Class BufferedBpmnEdge


  • public class BufferedBpmnEdge
    extends java.lang.Object
    This 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.String getFlowType()  
      java.lang.String getId()  
      java.lang.String getName()  
      java.lang.String getSourceRef()  
      java.lang.String getTargetRef()  
      void setFlowType​(java.lang.String flowType)  
      void setId​(java.lang.String id)  
      void setName​(java.lang.String name)  
      void setSourceRef​(java.lang.String sourceRef)  
      void setTargetRef​(java.lang.String targetRef)  
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • BufferedBpmnEdge

        public BufferedBpmnEdge()
        create a new instance
    • 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"