EDU.neu.ccs.demeter.aplib
Interface ClassGraphI
- public abstract interface ClassGraphI
|
Method Summary |
java.util.List |
getIncomingEdges(java.lang.String l)
A List of edges (EdgeI objects) coming into the vertex
labeled l, or null if there is no such vertex. |
java.util.List |
getOutgoingEdges(java.lang.String l)
A List of edges (EdgeI objects) going out of the vertex
labeled l, or null if there is no such vertex. |
java.util.List |
getVertices()
A List of Strings which label the vertices in the class graph. |
getVertices
public java.util.List getVertices()
- A List of Strings which label the vertices in the class graph.
getOutgoingEdges
public java.util.List getOutgoingEdges(java.lang.String l)
- A List of edges (EdgeI objects) going out of the vertex
labeled l, or null if there is no such vertex.
getIncomingEdges
public java.util.List getIncomingEdges(java.lang.String l)
- A List of edges (EdgeI objects) coming into the vertex
labeled l, or null if there is no such vertex.