Class ChooseInstallSetConsole
- 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.ChooseInstallSetConsole
-
- All Implemented Interfaces:
Referenceable
public final class ChooseInstallSetConsole extends Action
Displays the console panel which allows the end user to choose an install set, or features to install.
The panel is designed to be used in the pre-install phase of the installation only.
-
-
Constructor Summary
Constructors Constructor Description ChooseInstallSetConsole()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleangetAllowFeaturesCustomization()Whether or not to allow the end user to customize the installer via the "Choose Product Features" console panel.java.lang.StringgetChooseFeaturesTitle()Returns the title of the "Choose Product Features" console panel.booleangetCustomizeFeaturesOnly()Whether or not the panel should allow the selection of features only, instead of allowing the selection of install sets.booleangetInstallSetsOnly()whether or not install sets chosenjava.lang.StringgetTitle()Returns the title of the panel.voidsetAllowFeaturesCustomization(boolean customize)Whether or not to allow the end user to customize the installer via the "Choose Product Features" console panel.voidsetChooseFeaturesTitle(java.lang.String featuresTitle)Defines the title of the "Choose Product Features" console panel.voidsetCustomizeFeaturesOnly(boolean featuresOnly)Whether or not the panel should allow the selection of features only, instead of allowing the selection of install sets.
When settings this property to true, theallowFeaturesCustomizationproperty should also be necessarily set to true.voidsetInstallSetsOnly(boolean InstallSetsOnly)whether or not install sets chosenvoidsetTitle(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 "Choose Install Set".
-
getChooseFeaturesTitle
public java.lang.String getChooseFeaturesTitle()
Returns the title of the "Choose Product Features" console panel.
-
setChooseFeaturesTitle
public void setChooseFeaturesTitle(java.lang.String featuresTitle)
Defines the title of the "Choose Product Features" console panel. That panel will be displayed if the customizeFeatures property is set to true.- See Also:
setAllowFeaturesCustomization(boolean)
-
setCustomizeFeaturesOnly
public void setCustomizeFeaturesOnly(boolean featuresOnly)
Whether or not the panel should allow the selection of features only, instead of allowing the selection of install sets.
When settings this property to true, theallowFeaturesCustomizationproperty should also be necessarily set to true. #see #setAllowFeaturesCustomization
-
getCustomizeFeaturesOnly
public boolean getCustomizeFeaturesOnly()
Whether or not the panel should allow the selection of features only, instead of allowing the selection of install sets.
-
setAllowFeaturesCustomization
public void setAllowFeaturesCustomization(boolean customize)
Whether or not to allow the end user to customize the installer via the "Choose Product Features" console panel. That panel allows the end user to define the specific features of the product to install.- See Also:
setChooseFeaturesTitle(java.lang.String)
-
getAllowFeaturesCustomization
public boolean getAllowFeaturesCustomization()
Whether or not to allow the end user to customize the installer via the "Choose Product Features" console panel.
-
getInstallSetsOnly
public boolean getInstallSetsOnly()
whether or not install sets chosen
-
setInstallSetsOnly
public void setInstallSetsOnly(boolean InstallSetsOnly)
whether or not install sets chosen
-
-