Class PreInstallationSummaryConsole
- 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.PreInstallationSummaryConsole
-
- All Implemented Interfaces:
Referenceable
public final class PreInstallationSummaryConsole extends Action
Displays the information collected and evaluated prior to the installation of files. The panel is intended to be used in the end of the installation pre-install phase.
-
-
Constructor Summary
Constructors Constructor Description PreInstallationSummaryConsole()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Vector<VariableKeyedData>
getCustomFields()
The list of custom fields to display in the panel.int
getDiskSpaceUnit()
Gets you the units for disk space sizes 0 = bytes 1 = kilobytes 2 = megabytes 3 = gigabytesjava.lang.String
getPrompt()
Returns the panel's prompt to display.boolean
getShowDiskSpace()
Whether or not to display the disk space information.boolean
getShowInstallBundles()
Whether or not to display the selected product features.boolean
getShowInstallDir()
Whether or not to display the install folder.boolean
getShowInstallSets()
Whether or not to display the selected install sets.boolean
getShowJREDir()
Whether or not to display the VM install folder or the location of the system VM.boolean
getShowProductName()
Whether or not to display the product name.boolean
getShowShortcutDir()
Whether or not to display the shortcuts folder.java.lang.String
getTitle()
Returns the title of the panel.void
setDiskSpaceUnit(int diskSpaceUnit)
Sets the units for disk space sizes 0 = bytes 1 = kilobytes 2 = megabytes 3 = gigabytesvoid
setPrompt(java.lang.String t)
Defines the panel's prompt to display.void
setShowDiskSpace(boolean show)
Whether or not to display the disk space information.void
setShowInstallBundles(boolean show)
Whether or not to display the selected product features.void
setShowInstallDir(boolean show)
Whether or not to display the install folder.void
setShowInstallSets(boolean show)
Whether or not to display the selected install sets.void
setShowJREDir(boolean show)
Whether or not to display the VM install folder or the location of the system VM.void
setShowProductName(boolean show)
Whether or not to display the product name.void
setShowShortcutDir(boolean show)
Whether or not to display the shortcuts folder.void
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
-
getCustomFields
public java.util.Vector<VariableKeyedData> getCustomFields()
The list of custom fields to display in the panel.
-
setTitle
public void setTitle(java.lang.String title)
Defines the title of the panel. Default is "Pre-Installation Summary".
-
getTitle
public java.lang.String getTitle()
Returns the title of the panel.
-
setPrompt
public void setPrompt(java.lang.String t)
Defines the panel's prompt to display. Default is "Please Review the Following Before Continuing:".
-
getPrompt
public java.lang.String getPrompt()
Returns the panel's prompt to display.
-
setShowProductName
public void setShowProductName(boolean show)
Whether or not to display the product name. Default is true.
-
getShowProductName
public boolean getShowProductName()
Whether or not to display the product name.
-
setShowInstallDir
public void setShowInstallDir(boolean show)
Whether or not to display the install folder. Default is true.
-
getShowInstallDir
public boolean getShowInstallDir()
Whether or not to display the install folder.
-
setShowShortcutDir
public void setShowShortcutDir(boolean show)
Whether or not to display the shortcuts folder. Default is true.
-
getShowShortcutDir
public boolean getShowShortcutDir()
Whether or not to display the shortcuts folder.
-
setShowInstallSets
public void setShowInstallSets(boolean show)
Whether or not to display the selected install sets. Default is false.
-
getShowInstallSets
public boolean getShowInstallSets()
Whether or not to display the selected install sets.
-
setShowInstallBundles
public void setShowInstallBundles(boolean show)
Whether or not to display the selected product features. Default is false.
-
getShowInstallBundles
public boolean getShowInstallBundles()
Whether or not to display the selected product features.
-
setShowJREDir
public void setShowJREDir(boolean show)
Whether or not to display the VM install folder or the location of the system VM. Default is false.
-
getShowJREDir
public boolean getShowJREDir()
Whether or not to display the VM install folder or the location of the system VM.
-
setShowDiskSpace
public void setShowDiskSpace(boolean show)
Whether or not to display the disk space information. Default is true.
-
getShowDiskSpace
public boolean getShowDiskSpace()
Whether or not to display the disk space information.
-
getDiskSpaceUnit
public int getDiskSpaceUnit()
Gets you the units for disk space sizes 0 = bytes 1 = kilobytes 2 = megabytes 3 = gigabytes- Returns:
- the diskSpaceUnit
-
setDiskSpaceUnit
public void setDiskSpaceUnit(int diskSpaceUnit)
Sets the units for disk space sizes 0 = bytes 1 = kilobytes 2 = megabytes 3 = gigabytes- Parameters:
diskSpaceUnit
- the diskSpaceUnit to set
-
-