Uses of Interface
salvo.jesus.graph.DirectedEdge

Packages that use DirectedEdge
laas.friends.cosmopen.graphAnalysis This package provides the internal graph manipulation engine. 
salvo.jesus.graph   
 

Uses of DirectedEdge in laas.friends.cosmopen.graphAnalysis
 

Classes in laas.friends.cosmopen.graphAnalysis that implement DirectedEdge
 class NamedEdge
          This class represents a link tag extracted from an xml file generated with hydrogen.
 

Uses of DirectedEdge in salvo.jesus.graph
 

Classes in salvo.jesus.graph that implement DirectedEdge
 class DirectedEdgeImpl
          Represents a directed edge in a graph.
(package private)  class DirectedEdgeWeakImpl
          A weak implementation a directed edge in a graph.
 

Methods in salvo.jesus.graph that return DirectedEdge
 DirectedEdge DirectedGraphWeakImpl.getEdge(Vertex fromvertex, Vertex tovertex)
          Returns an Edge in the Graph whose origin is fromVertex and destination is toVertex.
 DirectedEdge DirectedGraphImpl.getEdge(Vertex fromvertex, Vertex tovertex)
          Returns an Edge in the Graph whose origin is fromVertex and destination is toVertex.
 DirectedEdge DirectedGraph.getEdge(Vertex fromvertex, Vertex tovertex)
          Returns an Edge in the Graph whose origin is fromVertex and destination is toVertex.
 

Methods in salvo.jesus.graph with parameters of type DirectedEdge
protected  void DirectedGraphWeakImpl.addEdge(DirectedEdge dedge)
          Adds the Edge created as an outgoing edge of one vertex and as an incoming edge of the other vertex.
protected  void DirectedGraphWeakImpl.removeEdge(DirectedEdge dedge)
          Removes the Edge as the incoming and outgoing edge of the vertices at the ends of the Edge.