Class CustomCodePanelConsole
- 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.actions.CustomCode
-
- com.zerog.ia.auto.project.console.CustomCodePanelConsole
-
- All Implemented Interfaces:
Referenceable
public final class CustomCodePanelConsole extends CustomCode
Displays a custom console panel. InstallAnywhere's Custom Code API allows developers to create custom consoles where necessary.
-
-
Constructor Summary
Constructors Constructor Description CustomCodePanelConsole()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getClassFullName()
Returns the fully qualified name of the class that implements the console panel.void
setClassFullName(java.lang.String classFullName)
Defines the fully qualified name of the class that implements the console panel.-
Methods inherited from class com.zerog.ia.auto.project.actions.CustomCode
getArchivesSigned, getDependencies, getSourceFile, setArchivesSigned, setDependencies, setSourceFile
-
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
-
getClassFullName
public java.lang.String getClassFullName()
Returns the fully qualified name of the class that implements the console panel.
-
setClassFullName
public void setClassFullName(java.lang.String classFullName)
Defines the fully qualified name of the class that implements the console panel. This class must extend com.zerog.ia.api.pub.CustomCodeConsoleAction and must implement a "public void executeConsoleAction()" method.
-
-