Uses of Class
treebolic.model.graph.GraphEdge

Packages that use GraphEdge
treebolic.model.graph   
 

Uses of GraphEdge in treebolic.model.graph
 

Fields in treebolic.model.graph with type parameters of type GraphEdge
protected  java.util.Set<GraphEdge> Graph.theEdges
          The set of edges
 

Methods in treebolic.model.graph that return GraphEdge
(package private) static GraphEdge GraphEdge.makeReverseOf(GraphEdge thisEdge)
          Make inverse edge
 

Methods in treebolic.model.graph that return types with arguments of type GraphEdge
 java.util.Collection<GraphEdge> Graph.getEdges()
          Returns a unmodifiable Collection of all the edges of this graph.
 java.util.Collection<GraphEdge> Graph.getEdges(GraphNode thisNode)
          Gets an unmodifiable collection of all edges adjacent to thisNode.
 java.util.Map<GraphNode,java.util.Collection<GraphEdge>> Graph.getNodeToEdgesMap()
          Returns a unmodifiable Map of all edges of this graph.
 java.util.Collection<GraphEdge> Graph.getNonTreeEdges(GraphNode thisNode)
          Gets an unmodifiable collection of all edges adjacent to thisNode that has been marked as tree.
 java.util.Collection<GraphEdge> Graph.getTreeEdges(GraphNode thisNode)
          Gets an unmodifiable collection of all edges adjacent to thisNode that has been marked as tree.
 

Methods in treebolic.model.graph with parameters of type GraphEdge
 void MutableGraph.add(GraphEdge thisEdge)
          Add edge.
(package private) static GraphEdge GraphEdge.makeReverseOf(GraphEdge thisEdge)
          Make inverse edge