Class InputItem
- java.lang.Object
-
- com.zerog.ia.auto.project.ProjectObject
-
- com.zerog.ia.auto.project.console.InputItem
-
- All Implemented Interfaces:
Referenceable
public final class InputItem extends ProjectObject
Defines the label and default value for an item to be requested from the end user. The input items are used with the GetUserInput console panel.
-
-
Constructor Summary
Constructors Constructor Description InputItem()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ProjectObject
getAction()
The action which this item belongs to.boolean
getDefaultSelected()
The default value for boolean input items.java.lang.String
getDefaultValue()
The item default value.java.lang.String
getLabel()
The label of the item.boolean
getSetVariable()
Whether or not to set a variable with the result of the requested information.java.lang.String
getVariableName()
The name of the variable where to store the requested information.void
setAction(ProjectObject Action)
The action which this item belongs to.void
setDefaultSelected(boolean DefaultSelected)
The default value for boolean input items.void
setDefaultValue(java.lang.String DefaultValue)
The item default value.void
setLabel(java.lang.String Label)
The label of the item.void
setSetVariable(boolean SetVariable)
Whether or not to set a variable with the result of the requested information.void
setVariableName(java.lang.String VariableName)
The name of the variable where to store the requested information.-
Methods inherited from class com.zerog.ia.auto.project.ProjectObject
equals, getReferenceID, hashCode, setReferenceID
-
-
-
-
Method Detail
-
getDefaultValue
public java.lang.String getDefaultValue()
The item default value.
-
setDefaultValue
public void setDefaultValue(java.lang.String DefaultValue)
The item default value.
-
getDefaultSelected
public boolean getDefaultSelected()
The default value for boolean input items.
-
setDefaultSelected
public void setDefaultSelected(boolean DefaultSelected)
The default value for boolean input items.
-
getAction
public ProjectObject getAction()
The action which this item belongs to.
-
setAction
public void setAction(ProjectObject Action)
The action which this item belongs to.
-
getLabel
public java.lang.String getLabel()
The label of the item.
-
setLabel
public void setLabel(java.lang.String Label)
The label of the item.
-
getSetVariable
public boolean getSetVariable()
Whether or not to set a variable with the result of the requested information. This option is only available with Single and Multiple choice input methods.
-
setSetVariable
public void setSetVariable(boolean SetVariable)
Whether or not to set a variable with the result of the requested information. This option is only available with Single and Multiple choice input methods.
-
getVariableName
public java.lang.String getVariableName()
The name of the variable where to store the requested information.
-
setVariableName
public void setVariableName(java.lang.String VariableName)
The name of the variable where to store the requested information.
-
-