Uses of Interface
to.etc.domui.component.menu.IMenuItem

Packages that use IMenuItem
to.etc.domui.component.menu   
 

Uses of IMenuItem in to.etc.domui.component.menu
 

Classes in to.etc.domui.component.menu that implement IMenuItem
 class MenuItemImpl
          A single item in the menu, as defined by the *code*.
 class MenuItemProxy
          Proxy to an actual MenuItem which can be used to override a menu with a different order, tree structure.
 

Fields in to.etc.domui.component.menu with type parameters of type IMenuItem
static java.util.Comparator<IMenuItem> MenuManager.C_BY_ORDER_AND_CHILDREN
           
 

Methods in to.etc.domui.component.menu that return IMenuItem
 IMenuItem MenuItemProxy.getParent()
           
 

Methods in to.etc.domui.component.menu that return types with arguments of type IMenuItem
 java.util.List<IMenuItem> MenuManager.createUserMenu(IMenuItemFilter filter)
          Creates a filtered and possibly reordered user menu.
 java.util.List<IMenuItem> IMenuItem.getChildren()
           
 java.util.List<IMenuItem> MenuItemImpl.getChildren()
           
 java.util.List<IMenuItem> MenuItemProxy.getChildren()
           
 java.util.List<IMenuItem> MenuManager.getRootMenu()
          Return the global central menu.
 

Methods in to.etc.domui.component.menu with parameters of type IMenuItem
 void MenuItemProxy.setParent(IMenuItem parent)
           
 

Method parameters in to.etc.domui.component.menu with type arguments of type IMenuItem
 void MenuGenerator2.generate(java.io.Writer pw, java.util.List<IMenuItem> list)
          Generate the menu as a JSON structure.
 void MenuItemImpl.setChildren(java.util.List<IMenuItem> children)
           
 void MenuItemProxy.setChildren(java.util.List<IMenuItem> children)
           
 

Constructors in to.etc.domui.component.menu with parameters of type IMenuItem
MenuItemProxy(IMenuItem actual)