Files
net_datastructures_5_sel_so…/net/datastructures/Vertex.java

7 lines
165 B
Java

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