Interface StructuredDataEdge


public interface StructuredDataEdge
A data edge with structural information. This interface is for temporary use only, e.g. for construction purposes in the factory. Implementations also may use it internally.
Author:
Kevin Goeser
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Returns the ID of the connector.
    Returns the data edge object the structured data edge belongs to.
    Returns the type of the data edge the structured data edge belongs to.
    int
    Returns the ID of the data element the structured data edge is connected to.
    int
    Returns the ID of the node the structured data edge is connected to.
  • Method Details

    • getDataEdge

      DataEdge getDataEdge()
      Returns the data edge object the structured data edge belongs to.
      Returns:
      The data edge object.
    • getNodeID

      int getNodeID()
      Returns the ID of the node the structured data edge is connected to.
      Returns:
      The node ID.
    • getConnectorID

      int getConnectorID()
      Returns the ID of the connector.
      Returns:
      The connector of the node.
    • getDataElementID

      int getDataElementID()
      Returns the ID of the data element the structured data edge is connected to.
      Returns:
      The data element ID.
    • getDataEdgeType

      ActivityConstants.AccessType getDataEdgeType()
      Returns the type of the data edge the structured data edge belongs to.
      Returns:
      The type of the data edge.