Package de.xima.fc.workflow.model.nodes
Class FcBreakProps
- java.lang.Object
 - 
- de.xima.fc.workflow.taglib.model.BaseActionProps
 - 
- de.xima.fc.workflow.model.nodes.FcBreakProps
 
 
 
- 
- All Implemented Interfaces:
 IDescriptionProviding,INameProviding,Serializable
public class FcBreakProps extends BaseActionProps implements Serializable
Model class for the return action (EWorkflowNodeType.FC_BREAK).- Since:
 - 8.2.0
 - Author:
 - XIMA MEDIA GmbH
 - See Also:
 - Serialized Form
 
 
- 
- 
Nested Class Summary
- 
Nested classes/interfaces inherited from class de.xima.fc.workflow.taglib.model.BaseActionProps
BaseActionProps.name 
 - 
 
- 
Field Summary
- 
Fields inherited from interface de.xima.fc.entities.interfaces.IDescriptionProviding
ATTR_BESCHREIBUNG, ATTR_DESCRIPTION, COL_DESCRIPTION 
- 
Fields inherited from interface de.xima.fc.entities.interfaces.INameProviding
ATTR_NAME, COL_NAME 
 - 
 
- 
Constructor Summary
Constructors Constructor Description FcBreakProps() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description NodeKeygetBreakTarget()voidsetBreakTarget(NodeKey breakTarget)- 
Methods inherited from class de.xima.fc.workflow.taglib.model.BaseActionProps
getBeschreibung, getColor, getDescription, getIcon, getName, setColor, setDescription, setIcon, setName 
 - 
 
 - 
 
- 
- 
Method Detail
- 
getBreakTarget
public NodeKey getBreakTarget()
- Returns:
 - Target node for the break statement. The node with that target is stops execution and transfers control
     back to its parent. When 
null, the target is the closest loop relative to this node. 
 
- 
setBreakTarget
public void setBreakTarget(NodeKey breakTarget)
- Parameters:
 breakTarget- Target node for the break statement. The node with that target is stops execution and transfers control back to its parent. Whennull, the target is the closest loop relative to this node.
 
 - 
 
 -