Package com.install4j.api.beans
Class ActionList
- java.lang.Object
-
- com.install4j.api.beans.ActionList
-
- All Implemented Interfaces:
java.io.Serializable
public class ActionList extends java.lang.Object implements java.io.Serializable
Property type for a configurable list of actions. Configuration options are available by usingActionListPropertyDescriptor
in the BeanInfo class.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ActionList()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getId()
Called by the framework.boolean
isBreakOnError()
If the execution of the actions should be terminated when an action fails.void
setBreakOnError(boolean breakOnError)
Determines if the execution of the actions should be terminated when an action fails.void
setId(java.lang.String id)
Called by the framework.
-
-
-
Method Detail
-
getId
public java.lang.String getId()
Called by the framework.
-
setId
public void setId(java.lang.String id)
Called by the framework.
-
isBreakOnError
public boolean isBreakOnError()
If the execution of the actions should be terminated when an action fails.- Returns:
- the value
-
setBreakOnError
public void setBreakOnError(boolean breakOnError)
Determines if the execution of the actions should be terminated when an action fails.- Parameters:
breakOnError
- the new value
-
-