KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > prefuse > visual > NodeItem


1 package prefuse.visual;
2
3 import prefuse.data.Node;
4
5 /**
6  * VisualItem that represents a node in a graph. This interface combines
7  * 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 NodeItem
15
Popular Tags