Class GetUserInputConsole

  • All Implemented Interfaces:
    Referenceable

    public final class GetUserInputConsole
    extends Action
    The panel allows developers to request input from the end user.
    • Constructor Detail

      • GetUserInputConsole

        public GetUserInputConsole()
    • Method Detail

      • getTitle

        public java.lang.String getTitle()
        Returns the title of the panel.
      • setTitle

        public void setTitle​(java.lang.String title)
        Defines the title of the panel. Default is "Get User Input".
      • getResultVariable

        public java.lang.String getResultVariable()
        Returns the name of the variable where to store the requested information.
      • setResultVariable

        public void setResultVariable​(java.lang.String resultVariable)
        Defines the name of the variable where to store the requested information.
      • getPrompt

        public java.lang.String getPrompt()
        Returns the panel's prompt to display.
      • setPrompt

        public void setPrompt​(java.lang.String prompt)
        Defines the panel's prompt to display. Default if "Enter requested information".
      • getInputMethod

        public InputMethod getInputMethod()
        Returns the input method of the requested items.
      • setInputMethod

        public void setInputMethod​(InputMethod inputMethod)
        Defines the input method of the requested items. The input items are defined in the inputItems property.
      • setInputItems

        public void setInputItems​(java.util.Vector<InputItem> inputItems)
        The list of items to request from the end user.