1 package prefuse.visual;2 3 import prefuse.data.Node;4 5 /**6 * VisualItem that represents a node in a graph. This interface combines7 * the {@link VisualItem} interface with the {@link prefuse.data.Node}8 * interface.9 * 10 * @author <a HREF="http://jheer.org">jeffrey heer</a>11 */12 public interface NodeItem extends VisualItem, Node {13 14 } // end of interface NodeItem15