Package com.zerog.ia.auto.project
Class Help
- java.lang.Object
-
- com.zerog.ia.auto.project.ProjectObject
-
- com.zerog.ia.auto.project.Help
-
- All Implemented Interfaces:
Referenceable
public final class Help extends ProjectObject
Defines a help context. A help context provides help information to the installer or to a specific panel.
-
-
Constructor Summary
Constructors Constructor Description Help()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getHelpText()
The help context text.boolean
getShowHelp()
Whether or not to display help.java.lang.String
getTitle()
The help context title.void
setHelpText(java.lang.String helpText)
The help context text.void
setShowHelp(boolean show)
Whether or not to display help.void
setTitle(java.lang.String title)
The help context title.-
Methods inherited from class com.zerog.ia.auto.project.ProjectObject
equals, getReferenceID, hashCode, setReferenceID
-
-
-
-
Method Detail
-
setShowHelp
public void setShowHelp(boolean show)
Whether or not to display help.
-
getShowHelp
public boolean getShowHelp()
Whether or not to display help.
-
setTitle
public void setTitle(java.lang.String title)
The help context title.
-
getTitle
public java.lang.String getTitle()
The help context title.
-
setHelpText
public void setHelpText(java.lang.String helpText)
The help context text.
-
getHelpText
public java.lang.String getHelpText()
The help context text.
-
-