Package com.zerog.ia.auto.project.panels
Class InputComponent
- java.lang.Object
-
- com.zerog.ia.auto.project.ProjectObject
-
- com.zerog.ia.auto.project.panels.InputComponent
-
- All Implemented Interfaces:
Referenceable
public final class InputComponent extends ProjectObject
Defines the label, default value and result variable for input components. It is intended to be used with InputComponentGroup objects.
-
-
Constructor Summary
Constructors Constructor Description InputComponent()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BidiOption
getBidiOption()
java.lang.String
getDefaultValue()
Returns the component default value.java.lang.String
getLabel()
Returns the label of the component.java.lang.String
getResultVariable()
Returns the name of the variable where to store the result of the component.java.util.Vector<InputComponent>
getSubComponents()
The subcomponents of the group.void
setBidiOption(BidiOption BidiOption)
void
setDefaultValue(java.lang.String defaultValue)
Defines the component default value.void
setLabel(java.lang.String label)
Defines the label of the component.void
setResultVariable(java.lang.String variableName)
Defines the name of the variable where to store the result of the component.void
setSubComponents(java.util.Vector<InputComponent> subComponents)
The subcomponents of the group.-
Methods inherited from class com.zerog.ia.auto.project.ProjectObject
equals, getReferenceID, hashCode, setReferenceID
-
-
-
-
Method Detail
-
getLabel
public java.lang.String getLabel()
Returns the label of the component.
-
setLabel
public void setLabel(java.lang.String label)
Defines the label of the component.
-
getDefaultValue
public java.lang.String getDefaultValue()
Returns the component default value.
-
setDefaultValue
public void setDefaultValue(java.lang.String defaultValue)
Defines the component default value.
-
getResultVariable
public java.lang.String getResultVariable()
Returns the name of the variable where to store the result of the component.
-
setResultVariable
public void setResultVariable(java.lang.String variableName)
Defines the name of the variable where to store the result of the component.
-
getSubComponents
public java.util.Vector<InputComponent> getSubComponents()
The subcomponents of the group.
-
setSubComponents
public void setSubComponents(java.util.Vector<InputComponent> subComponents)
The subcomponents of the group.
-
getBidiOption
public BidiOption getBidiOption()
-
setBidiOption
public void setBidiOption(BidiOption BidiOption)
-
-