package graph; /** A vertex in a graph. * * Has no special elements or methods other than what it inherits * from its parent interfaces: namely, it must have an element and * it must support decorations. */ public interface Vertex extends container.Position, container.Decorable { }