Files
net_datastructures_5_sel_so…/net/datastructures/Edge.java

7 lines
162 B
Java

package net.datastructures;
/**
* An interface for an edge of a graph.
* @author Roberto Tamassia
*/
public interface Edge<E> extends DecorablePosition<E> { }