goldman.graph
Interface Edge<V>

All Known Subinterfaces:
WeightedEdge<V>
All Known Implementing Classes:
SimpleEdge, SimpleWeightedEdge

public interface Edge<V>

The Edge interface is used for an unweighted edge.


Method Summary
 V dest()
          Returns the destination (head) of this edge.
 V source()
          Returns the source (tail) of this edge.
 

Method Detail

dest

V dest()
Returns the destination (head) of this edge.


source

V source()
Returns the source (tail) of this edge.