Uses of Class
org.salespointframework.core.MenuSheetObject

Packages that use MenuSheetObject
org.salespointframework.core This package contains the central classes of the Framework. 
 

Uses of MenuSheetObject in org.salespointframework.core
 

Subclasses of MenuSheetObject in org.salespointframework.core
 class MenuSheet
          A MenuSheet consisting of MenuSheetObjects.
 class MenuSheetItem
          A MenuSheetItem that has a label and an associated action.
 class MenuSheetSeparator
          A separator in a MenuSheet.
 

Fields in org.salespointframework.core with type parameters of type MenuSheetObject
protected  java.util.LinkedList<MenuSheetObject> MenuSheet.m_lmsoItems
          The items of this MenuSheet.
 

Methods in org.salespointframework.core that return MenuSheetObject
 MenuSheetObject MenuSheetObject.getTaggedItem(java.lang.String sTag)
          Convenience method for in-depth search for a tagged item.
 MenuSheetObject MenuSheetObject.getTaggedItem(java.lang.String sTag, boolean fTopLevelOnly)
          Get the first MenuSheetObject with the given tag which is managed by this one.
 MenuSheetObject MenuSheet.getTaggedItem(java.lang.String sTag, boolean fTopLevelOnly)
          Get a MenuSheetObject by its tag.
 MenuSheetObject MenuSheet.remove(MenuSheetObject msoRemove)
          Remove a MenuSheetObject from the MenuSheet.
 MenuSheetObject MenuSheet.remove(java.lang.String sTag)
          Remove a tagged top level item from the MenuSheet.
 

Methods in org.salespointframework.core that return types with arguments of type MenuSheetObject
 java.util.Iterator<MenuSheetObject> MenuSheet.iterator()
          Return a fail-fast, readonly iterator of the items in this MenuSheet.
 

Methods in org.salespointframework.core with parameters of type MenuSheetObject
 void MenuSheet.add(MenuSheetObject mso)
          Adds a MenuSheetObject to the end of this MenuSheet.
(package private)  void MenuSheet.mergedAdd(MenuSheetObject mso, int nIndex)
          Internal method used for updating merged peers correctly.
(package private)  void MenuSheet.mergedRemove(MenuSheetObject mso)
          Internal method used to properly update merged peers.
 MenuSheetObject MenuSheet.remove(MenuSheetObject msoRemove)
          Remove a MenuSheetObject from the MenuSheet.