Package com.zerog.ia.auto.project.panels
Class ChooseJavaVMPanel
- 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.ChooseJavaVMPanel
-
- All Implemented Interfaces:
Referenceable
public final class ChooseJavaVMPanel extends InstallPanelAction
This action allows the user to choose a Java VM for use by a LaunchAnywhere.
-
-
Constructor Summary
Constructors Constructor Description ChooseJavaVMPanel()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
getAllowChooseSpecificExe()
gets the boolean indicating that a button will be available for the user to locate a specific java executableboolean
getAllowSearchInOtherLocations()
gets the boolean indicating that a button will be available in install-time for the user to search for locations other than the default onesjava.lang.String
getHeader()
The text of the panel.java.lang.String
getTitle()
The title of the panel.boolean
getUserHasVMChoice()
gets the boolean indicating that the user can install a jre with our installervoid
setAllowChooseSpecificExe(boolean state)
sets the boolean indicating that a button will be available for the user to locate a specific java executablevoid
setAllowSearchInOtherLocations(boolean state)
sets the boolean indicating that a button will be available in install-time for the user to search for locations other than the default onesvoid
setHeader(java.lang.String prompt)
The text of the panel.void
setTitle(java.lang.String t)
The title of the panel.void
setUserHasVMChoice(boolean state)
sets the boolean indicating that the user can install a jre with our installer-
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
-
getTitle
public java.lang.String getTitle()
The title of the panel.
-
setTitle
public void setTitle(java.lang.String t)
The title of the panel.
-
setHeader
public void setHeader(java.lang.String prompt)
The text of the panel.
-
getHeader
public java.lang.String getHeader()
The text of the panel.
-
setUserHasVMChoice
public void setUserHasVMChoice(boolean state)
sets the boolean indicating that the user can install a jre with our installer
-
setAllowSearchInOtherLocations
public void setAllowSearchInOtherLocations(boolean state)
sets the boolean indicating that a button will be available in install-time for the user to search for locations other than the default ones
-
setAllowChooseSpecificExe
public void setAllowChooseSpecificExe(boolean state)
sets the boolean indicating that a button will be available for the user to locate a specific java executable
-
getUserHasVMChoice
public boolean getUserHasVMChoice()
gets the boolean indicating that the user can install a jre with our installer
-
getAllowSearchInOtherLocations
public boolean getAllowSearchInOtherLocations()
gets the boolean indicating that a button will be available in install-time for the user to search for locations other than the default ones
-
getAllowChooseSpecificExe
public boolean getAllowChooseSpecificExe()
gets the boolean indicating that a button will be available for the user to locate a specific java executable
-
-