Class BufferedBpmnEdge
- java.lang.Object
-
- org.tweetyproject.logics.bpm.parser.BufferedBpmnEdge
-
public class BufferedBpmnEdge extends java.lang.ObjectThis is a helper class for parsing edges in a BPMN Model- Author:
- Benedikt Knopp
-
-
Constructor Summary
Constructors Constructor Description BufferedBpmnEdge()create a new instance
-
Method Summary
Modifier and Type Method Description java.lang.StringgetFlowType()java.lang.StringgetId()java.lang.StringgetName()java.lang.StringgetSourceRef()java.lang.StringgetTargetRef()voidsetFlowType(java.lang.String flowType)voidsetId(java.lang.String id)voidsetName(java.lang.String name)voidsetSourceRef(java.lang.String sourceRef)voidsetTargetRef(java.lang.String targetRef)
-
-
-
Method Detail
-
getId
public java.lang.String getId()
- Returns:
- the unique identifier
-
getName
public java.lang.String getName()
- Returns:
- the (optional) edge label
-
getSourceRef
public java.lang.String getSourceRef()
- Returns:
- the id of the source node
-
getTargetRef
public java.lang.String getTargetRef()
- Returns:
- the id of the target node
-
getFlowType
public java.lang.String getFlowType()
- Returns:
- the flow type
-
setId
public void setId(java.lang.String id)
- Parameters:
id- the unique identifier
-
setName
public void setName(java.lang.String name)
- Parameters:
name- the (optional) edge label
-
setSourceRef
public void setSourceRef(java.lang.String sourceRef)
- Parameters:
sourceRef- the id of the source node
-
setTargetRef
public void setTargetRef(java.lang.String targetRef)
- Parameters:
targetRef- the id of the target node
-
setFlowType
public void setFlowType(java.lang.String flowType)
- Parameters:
flowType- one of "sequence", "message"
-
-