Files
unisa_strutture_dati_2013_2014/graph/Vertex.java
2014-05-20 20:25:19 +02:00

7 lines
152 B
Java

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