Interface StructuredDataEdge
-
public interface StructuredDataEdgeA 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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetConnectorID()Returns the ID of the connector.DataEdgegetDataEdge()Returns the data edge object the structured data edge belongs to.ActivityConstants.AccessTypegetDataEdgeType()Returns the type of the data edge the structured data edge belongs to.intgetDataElementID()Returns the ID of the data element the structured data edge is connected to.intgetNodeID()Returns the ID of the node the structured data edge is connected to.
-
-
-
Method Detail
-
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.
-
-