Package org.flowable.bpmn.model
Class SequenceFlow
- java.lang.Object
-
- org.flowable.bpmn.model.BaseElement
-
- org.flowable.bpmn.model.FlowElement
-
- org.flowable.bpmn.model.SequenceFlow
-
- All Implemented Interfaces:
HasExecutionListeners,HasExtensionAttributes
public class SequenceFlow extends FlowElement
- Author:
- Tijs Rademakers, Joram Barrez
-
-
Field Summary
Fields Modifier and Type Field Description protected StringconditionExpressionprotected StringskipExpressionprotected FlowElementsourceFlowElementprotected StringsourceRefprotected FlowElementtargetFlowElementprotected StringtargetRefprotected List<Integer>waypointsGraphical information: a list of waypoints: x1, y1, x2, y2, x3, y3, ..-
Fields inherited from class org.flowable.bpmn.model.FlowElement
documentation, executionListeners, name, parentContainer
-
Fields inherited from class org.flowable.bpmn.model.BaseElement
attributes, extensionElements, id, xmlColumnNumber, xmlRowNumber
-
-
Constructor Summary
Constructors Constructor Description SequenceFlow()SequenceFlow(String sourceRef, String targetRef)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SequenceFlowclone()StringgetConditionExpression()StringgetSkipExpression()FlowElementgetSourceFlowElement()StringgetSourceRef()FlowElementgetTargetFlowElement()StringgetTargetRef()List<Integer>getWaypoints()voidsetConditionExpression(String conditionExpression)voidsetSkipExpression(String skipExpression)voidsetSourceFlowElement(FlowElement sourceFlowElement)voidsetSourceRef(String sourceRef)voidsetTargetFlowElement(FlowElement targetFlowElement)voidsetTargetRef(String targetRef)voidsetValues(SequenceFlow otherFlow)voidsetWaypoints(List<Integer> waypoints)StringtoString()-
Methods inherited from class org.flowable.bpmn.model.FlowElement
getDocumentation, getExecutionListeners, getName, getParentContainer, getSubProcess, setDocumentation, setExecutionListeners, setName, setParentContainer, setValues
-
Methods inherited from class org.flowable.bpmn.model.BaseElement
addAttribute, addExtensionElement, getAttributes, getAttributeValue, getExtensionElements, getId, getXmlColumnNumber, getXmlRowNumber, setAttributes, setExtensionElements, setId, setValues, setXmlColumnNumber, setXmlRowNumber
-
-
-
-
Field Detail
-
conditionExpression
protected String conditionExpression
-
sourceRef
protected String sourceRef
-
targetRef
protected String targetRef
-
skipExpression
protected String skipExpression
-
sourceFlowElement
protected FlowElement sourceFlowElement
-
targetFlowElement
protected FlowElement targetFlowElement
-
-
Method Detail
-
getConditionExpression
public String getConditionExpression()
-
setConditionExpression
public void setConditionExpression(String conditionExpression)
-
getSourceRef
public String getSourceRef()
-
setSourceRef
public void setSourceRef(String sourceRef)
-
getTargetRef
public String getTargetRef()
-
setTargetRef
public void setTargetRef(String targetRef)
-
getSkipExpression
public String getSkipExpression()
-
setSkipExpression
public void setSkipExpression(String skipExpression)
-
getSourceFlowElement
public FlowElement getSourceFlowElement()
-
setSourceFlowElement
public void setSourceFlowElement(FlowElement sourceFlowElement)
-
getTargetFlowElement
public FlowElement getTargetFlowElement()
-
setTargetFlowElement
public void setTargetFlowElement(FlowElement targetFlowElement)
-
clone
public SequenceFlow clone()
- Specified by:
clonein classFlowElement
-
setValues
public void setValues(SequenceFlow otherFlow)
-
-