PageRenderTime 27ms CodeModel.GetById 22ms RepoModel.GetById 0ms app.codeStats 0ms

/webportal/src/main/java/au/org/emii/portal/menu/TreeMenuItem.java

http://alageospatialportal.googlecode.com/
Java | 15 lines | 12 code | 3 blank | 0 comment | 0 complexity | 342c7b848d72be8e438a10230ec44492 MD5 | raw file
  1. package au.org.emii.portal.menu;
  2. import java.util.List;
  3. public interface TreeMenuItem extends TreeMenuValue {
  4. public static final int CONCRETE_TYPE_UNKNOWN = 0;
  5. public static final int CONCRETE_TYPE_MENUGROUP = 1;
  6. public static final int CONCRETE_TYPE_MENUITEM = 2;
  7. public TreeMenuItem getParent();
  8. public void setParent(TreeMenuItem treeMenuItem);
  9. public List<? extends TreeMenuItem> getChildren();
  10. public int getConcreteType();
  11. public Object clone() throws CloneNotSupportedException;
  12. }