Package com.zerog.ia.auto.project.panels
Class DisplayMessagePanel
- 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.DisplayMessagePanel
-
- All Implemented Interfaces:
Referenceable
- Direct Known Subclasses:
AddFeatureIntroductionPanel
,InstallCompleteOldPanel
,IntroductionPanel
,RemoveFeatureIntroductionPanel
,RepairFeatureIntroductionPanel
,SystemiLoginCredentialPanel
,UninstallerIntroductionPanel
public class DisplayMessagePanel extends InstallPanelAction
This action creates an install panel to display a message to the user. Version 1.1 made modifications to DisplayMessage to support its use as an independent action within IA.
-
-
Constructor Summary
Constructors Constructor Description DisplayMessagePanel()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TextAlignment
getAlignment()
Alignment sets the message's vertical alignment to left, center or rightTextAlignment
getJustification()
Justification sets the message's horizontal alignment to left, center or rightjava.lang.String
getMessage()
Message is the content that is displayed at the center of the panel during installation.java.lang.String
getStepTitle()
Setup the title of the panel.void
setAlignment(TextAlignment textAlignment)
Alignment sets the message's vertical alignment to left, center or rightvoid
setJustification(TextAlignment textJustification)
Justification sets the message's horizontal alignment to left, center or rightvoid
setMessage(java.lang.String message)
Message is the content that is displayed at the center of the panel during installation.void
setStepTitle(java.lang.String t)
Setup the title of the panel.-
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
-
setMessage
public void setMessage(java.lang.String message)
Message is the content that is displayed at the center of the panel during installation.
-
setJustification
public void setJustification(TextAlignment textJustification)
Justification sets the message's horizontal alignment to left, center or right
-
setAlignment
public void setAlignment(TextAlignment textAlignment)
Alignment sets the message's vertical alignment to left, center or right
-
setStepTitle
public void setStepTitle(java.lang.String t)
Setup the title of the panel.
-
getStepTitle
public java.lang.String getStepTitle()
Setup the title of the panel.
-
getMessage
public java.lang.String getMessage()
Message is the content that is displayed at the center of the panel during installation.
-
getJustification
public TextAlignment getJustification()
Justification sets the message's horizontal alignment to left, center or right
-
getAlignment
public TextAlignment getAlignment()
Alignment sets the message's vertical alignment to left, center or right
-
-