View Javadoc

1   package net.sf.jlayercheck.util.modeltree;
2   
3   /**
4    * Returns the internal name of a node, e.g. the classname. Used with
5    * ModelTree.
6    * 
7    * @author webmaster@earth3d.org
8    */
9   public interface NamedTreeNode {
10  	public String getName();
11  }