Interface StructuredEdge
-
public interface StructuredEdge
An 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 int
getDestinationNodeID()
Edge
getEdge()
Return the edge object.ProcessConstants.EdgeType
getEdgeType()
int
getSourceNodeID()
The source node ID of the edge.
-
-
-
Method Detail
-
getEdge
Edge getEdge()
Return the edge object.- Returns:
- The edge.
-
getSourceNodeID
int getSourceNodeID()
The source node ID of the edge.- Returns:
- The source node ID of the edge.
-
getDestinationNodeID
int getDestinationNodeID()
- Returns:
- The destination node ID of the edge.
-
getEdgeType
ProcessConstants.EdgeType getEdgeType()
- Returns:
- The type of the edge.
-
-