Interface for directed graphs. More...
Public Member Functions | |
| List< EdgeType > | getEdges () |
| Edges of the graph. | |
| List< NodeType > | getNodes () |
| Nodes of the graph. | |
| int | nodeCount () |
| Number of nodes in the graph. | |
Package Functions | |
| int | edgeCount () |
| Number of edges in the graph. | |
Interface that must be implemented by all graph types that want to make use of API graph algorithms.
| <NodeType> | Type of the nodes in the graph. | |
| <EdgeType> | Type of the edges in the graph. |
| int BinNavi.API.disassembly.IDirectedGraph< NodeType, EdgeType >.edgeCount | ( | ) | [package] |
Returns the number of edges in the graph.
Returns the edges of the graph.
| List<NodeType> BinNavi.API.disassembly.IDirectedGraph< NodeType, EdgeType >.getNodes | ( | ) |
Returns the nodes of the graph.
| int BinNavi.API.disassembly.IDirectedGraph< NodeType, EdgeType >.nodeCount | ( | ) |
Returns the number of nodes in the graph.
1.7.1