Class ImportantNoteConsole
- 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.ImportantNoteConsole
-
- All Implemented Interfaces:
Referenceable
public final class ImportantNoteConsole extends Action
Displays an important note to the end user.
-
-
Constructor Summary
Constructors Constructor Description ImportantNoteConsole()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getExistingFile()
java.lang.String
getInstalledFile()
The text source file.java.lang.String
getPrompt()
The panel's prompt to display.FileType
getSourceFileType()
The source file type.java.lang.String
getTitle()
The title of the panel.void
setExistingFile(java.lang.String ExistingFile)
void
setInstalledFile(java.lang.String path)
The text source file.void
setPrompt(java.lang.String Prompt)
The panel's prompt to display.void
setSourceFileType(FileType SourceFileType)
The source file type.void
setTitle(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
-
getTitle
public java.lang.String getTitle()
The title of the panel. Default is "Important Information".
-
setTitle
public void setTitle(java.lang.String Title)
The title of the panel. Default is "Important Information".
-
getPrompt
public java.lang.String getPrompt()
The panel's prompt to display. Default is "Please read before continuing:"
-
setPrompt
public void setPrompt(java.lang.String Prompt)
The panel's prompt to display. Default is "Please read before continuing:"
-
getSourceFileType
public FileType getSourceFileType()
The source file type. Defines if the source file should be bundled in to the installer or already exists on the end user's machine.
-
setSourceFileType
public void setSourceFileType(FileType SourceFileType)
The source file type. Defines if the source file should be bundled in to the installer or already exists on the end user's machine.
-
getExistingFile
public java.lang.String getExistingFile()
-
setExistingFile
public void setExistingFile(java.lang.String ExistingFile)
-
setInstalledFile
public void setInstalledFile(java.lang.String path)
The text source file. Supports the display of both HTML and plain text files.
-
getInstalledFile
public java.lang.String getInstalledFile()
The text source file. Supports the display of both HTML and plain text files.
-
-