Class UninstallCompleteConsole
- 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.UninstallCompleteConsole
-
- All Implemented Interfaces:
Referenceable
public final class UninstallCompleteConsole extends Action
Displays information that the uninstaller has completed. The panel is intended to be used at the post-uninstall phase of the uninstallation.
-
-
Constructor Summary
Constructors Constructor Description UninstallCompleteConsole()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetIncompleteMessage()The message to be displayed on incomplete uninstallation.java.lang.StringgetMessage()The message to be displayed when uninstallation completes successfully.java.lang.StringgetSkippedMessage()java.lang.StringgetTitle()The title of the panel.voidsetIncompleteMessage(java.lang.String IncompleteMessage)The message to be displayed on incomplete uninstallation.voidsetMessage(java.lang.String Message)The message to be displayed when uninstallation completes successfully.voidsetSkippedMessage(java.lang.String skippedMessage)voidsetTitle(java.lang.String Title)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
-
getSkippedMessage
public java.lang.String getSkippedMessage()
-
setSkippedMessage
public void setSkippedMessage(java.lang.String skippedMessage)
-
getTitle
public java.lang.String getTitle()
The title of the panel. Default is "Uninstall Complete".
-
setTitle
public void setTitle(java.lang.String Title)
The title of the panel. Default is "Uninstall Complete".
-
getMessage
public java.lang.String getMessage()
The message to be displayed when uninstallation completes successfully. Default is "All items were successfully uninstalled.".
-
setMessage
public void setMessage(java.lang.String Message)
The message to be displayed when uninstallation completes successfully. Default is "All items were successfully uninstalled.".
-
getIncompleteMessage
public java.lang.String getIncompleteMessage()
The message to be displayed on incomplete uninstallation. Default is "Some items could not be removed.".
-
setIncompleteMessage
public void setIncompleteMessage(java.lang.String IncompleteMessage)
The message to be displayed on incomplete uninstallation. Default is "Some items could not be removed.".
-
-