package nl.tudelft.lifetiles.graph.model;
/**
* Interface for generic edge.
*
* @author Rutger van den Berg
* @param <V>
* The type of vertex to use for this Edge.
*/
// The name is short, but still quite clear.
@SuppressWarnings("PMD.ShortClassName")
public interface Edge<V> {
}