Class GetUserInputConsole
- java.lang.Object
-
- com.zerog.ia.auto.project.ProjectObject
-
- com.zerog.ia.auto.project.InstallableObject
-
- com.zerog.ia.auto.project.actions.Action
-
- com.zerog.ia.auto.project.console.GetUserInputConsole
-
- All Implemented Interfaces:
Referenceable
public final class GetUserInputConsole extends Action
The panel allows developers to request input from the end user.
-
-
Constructor Summary
Constructors Constructor Description GetUserInputConsole()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description InputMethod
getInputMethod()
Returns the input method of the requested items.java.lang.String
getPrompt()
Returns the panel's prompt to display.java.lang.String
getResultVariable()
Returns the name of the variable where to store the requested information.java.lang.String
getTitle()
Returns the title of the panel.void
setInputItems(java.util.Vector<InputItem> inputItems)
The list of items to request from the end user.void
setInputMethod(InputMethod inputMethod)
Defines the input method of the requested items.void
setPrompt(java.lang.String prompt)
Defines the panel's prompt to display.void
setResultVariable(java.lang.String resultVariable)
Defines the name of the variable where to store the requested information.void
setTitle(java.lang.String title)
Defines the title of the panel.-
Methods inherited from class com.zerog.ia.auto.project.InstallableObject
getBelongsToUninstallPhase, getRollbackEnabledCancel, getRollbackEnabledError, getRuleExpression, getRules, getRulesLogicalOperation, getTagsInInstallPiece, setBelongsToUninstallPhase, setRollbackEnabledCancel, setRollbackEnabledError, setRuleExpression, setRulesLogicalOperation, setTagsInInstallPiece
-
Methods inherited from class com.zerog.ia.auto.project.ProjectObject
equals, getReferenceID, hashCode, setReferenceID
-
-
-
-
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.
-
-