Class ActionGroup
- 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.ActionGroup
-
- All Implemented Interfaces:
DBHostable
,GeneralAction
,JEEHostable
,OSHostable
,Referenceable
public final class ActionGroup extends Action implements GeneralAction
Groups actions together to improve organization. Rules applied to the ActionGroup are propagated to the contained actions.
-
-
Constructor Summary
Constructors Constructor Description ActionGroup()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Vector<Action>
getChildren()
The actions contained in the ActionGroup.java.lang.String
getGroupName()
The name of the group.boolean
isCommentActionGroup()
Checks for the Comment Action Groupvoid
setCommentActionGroup(boolean commentActionGroup)
Sets the comments Action groupvoid
setGroupName(java.lang.String groupName)
The name of the group.-
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
-
getGroupName
public java.lang.String getGroupName()
The name of the group.
-
setGroupName
public void setGroupName(java.lang.String groupName)
The name of the group.
-
isCommentActionGroup
public boolean isCommentActionGroup()
Checks for the Comment Action Group
-
setCommentActionGroup
public void setCommentActionGroup(boolean commentActionGroup)
Sets the comments Action group
-
getChildren
public java.util.Vector<Action> getChildren()
The actions contained in the ActionGroup.
-
-