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 SummaryConstructors Constructor Description BufferedBpmnEdge()create a new instance
 - 
Method SummaryModifier 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- 
getIdpublic java.lang.String getId() - Returns:
- the unique identifier
 
 - 
getNamepublic java.lang.String getName() - Returns:
- the (optional) edge label
 
 - 
getSourceRefpublic java.lang.String getSourceRef() - Returns:
- the id of the source node
 
 - 
getTargetRefpublic java.lang.String getTargetRef() - Returns:
- the id of the target node
 
 - 
getFlowTypepublic java.lang.String getFlowType() - Returns:
- the flow type
 
 - 
setIdpublic void setId(java.lang.String id) - Parameters:
- id- the unique identifier
 
 - 
setNamepublic void setName(java.lang.String name) - Parameters:
- name- the (optional) edge label
 
 - 
setSourceRefpublic void setSourceRef(java.lang.String sourceRef) - Parameters:
- sourceRef- the id of the source node
 
 - 
setTargetRefpublic void setTargetRef(java.lang.String targetRef) - Parameters:
- targetRef- the id of the target node
 
 - 
setFlowTypepublic void setFlowType(java.lang.String flowType) - Parameters:
- flowType- one of "sequence", "message"
 
 
- 
 
-