1 22 package org.jboss.console.navtree; 23 24 import org.jboss.console.manager.interfaces.TreeAction; 25 import org.jboss.console.manager.interfaces.TreeNodeMenuEntry; 26 27 42 43 public interface NodeWrapper 44 { 45 public Object getChild (int index); 46 public int getChildCount (); 47 public int getIndexOfChild (Object child); 48 public boolean isLeaf (); 49 50 public String getIconUrl (); 51 public TreeAction getAssociatedAction(); 52 public String getDescription (); 53 public TreeNodeMenuEntry[] getMenuEntries (); 54 55 public String getPath (); 56 } 57 | Popular Tags |