Package com.zerog.ia.auto.project.panels
Class GetUserInputAdvancedPanel
- java.lang.Object
-
- com.zerog.ia.auto.project.ProjectObject
-
- com.zerog.ia.auto.project.InstallableObject
-
- com.zerog.ia.auto.project.panels.InstallPanelAction
-
- com.zerog.ia.auto.project.panels.GetUserInputAdvancedPanel
-
- All Implemented Interfaces:
Referenceable
public final class GetUserInputAdvancedPanel extends InstallPanelAction
This action allows setup authors to get input from the user using multiple input types, and setting multiple variables. This action can have radio buttons, check boxes, text fields, and menus-all on the same panel.
-
-
Constructor Summary
Constructors Constructor Description GetUserInputAdvancedPanel()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Vector<InputComponentGroup>
getComponentGroups()
The list of component groups to display.java.lang.String
getPrompt()
gets the text string to prompt for user inputjava.lang.String
getTitle()
gets the title of the panelboolean
isUseFixedHeightPromptAdv()
Whether to use fixed height for prompt.boolean
isUseNextButtonValidationAdv()
Whether to use Enable/Disable or pop up display.void
setPrompt(java.lang.String prompt)
sets the text string to prompt for user inputvoid
setTitle(java.lang.String title)
sets the title of the panelvoid
setUseFixedHeightPromptAdv(boolean useFixedHeightPromptAdv)
Whether to use fixed height for prompt.void
setUseNextButtonValidationAdv(boolean useNextButtonValidationAdv)
Whether to use Enable/Disable or pop up display.-
Methods inherited from class com.zerog.ia.auto.project.panels.InstallPanelAction
getArchivesSigned, getDependencies, getHelp, getImage, getImageOption, getInstallPanelClassName, getLabelIndex, getLabelOption, getResource, setArchivesSigned, setDependencies, setHelp, setImage, setImageOption, setInstallPanelClassName, setLabelIndex, setLabelOption, setResource
-
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
-
setTitle
public void setTitle(java.lang.String title)
sets the title of the panel
-
getTitle
public java.lang.String getTitle()
gets the title of the panel
-
getPrompt
public java.lang.String getPrompt()
gets the text string to prompt for user input
-
setPrompt
public void setPrompt(java.lang.String prompt)
sets the text string to prompt for user input
-
isUseFixedHeightPromptAdv
public boolean isUseFixedHeightPromptAdv()
Whether to use fixed height for prompt.
-
setUseFixedHeightPromptAdv
public void setUseFixedHeightPromptAdv(boolean useFixedHeightPromptAdv)
Whether to use fixed height for prompt.
-
isUseNextButtonValidationAdv
public boolean isUseNextButtonValidationAdv()
Whether to use Enable/Disable or pop up display.
-
setUseNextButtonValidationAdv
public void setUseNextButtonValidationAdv(boolean useNextButtonValidationAdv)
Whether to use Enable/Disable or pop up display.
-
getComponentGroups
public java.util.Vector<InputComponentGroup> getComponentGroups()
The list of component groups to display.
-
-