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 boolean
getAllowFeaturesCustomization()
Whether or not to allow the end user to customize the installer via the "Choose Product Features" console panel.java.lang.String
getChooseFeaturesTitle()
Returns the title of the "Choose Product Features" console panel.boolean
getCustomizeFeaturesOnly()
Whether or not the panel should allow the selection of features only, instead of allowing the selection of install sets.boolean
getInstallSetsOnly()
whether or not install sets chosenjava.lang.String
getTitle()
Returns the title of the panel.void
setAllowFeaturesCustomization(boolean customize)
Whether or not to allow the end user to customize the installer via the "Choose Product Features" console panel.void
setChooseFeaturesTitle(java.lang.String featuresTitle)
Defines the title of the "Choose Product Features" console panel.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, theallowFeaturesCustomization
property should also be necessarily set to true.void
setInstallSetsOnly(boolean InstallSetsOnly)
whether or not install sets chosenvoid
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 "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, theallowFeaturesCustomization
property 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
-
-