package prefuse.visual; import prefuse.data.Node; /** * VisualItem that represents a node in a graph. This interface combines * the {@link VisualItem} interface with the {@link prefuse.data.Node} * interface. * * @author jeffrey heer */ public interface NodeItem extends VisualItem, Node { } // end of interface NodeItem