Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
org.eclipse.swt.widgets.Menu

Uses of Menu in org.eclipse.swt.widgets
 

Fields in org.eclipse.swt.widgets declared as Menu
(package private)  Menu MenuItem.parent
           
(package private)  Menu MenuItem.menu
           
(package private)  Menu[] Display.popups
           
(package private)  Menu Decorations.menuBar
           
(package private)  Menu[] Decorations.menus
           
(package private)  Menu Control.menu
           
 

Methods in org.eclipse.swt.widgets that return Menu
 Menu MenuItem.getMenu()
          Returns the receiver's cascade menu if it has one or null if it does not.
 Menu MenuItem.getParent()
          Returns the receiver's parent, which must be a Menu.
(package private) static Menu Menu.checkNull(Menu menu)
           
 Menu Menu.getParentMenu()
          Returns the receiver's parent item, which must be a Menu or null when the receiver is a root.
 Menu Decorations.getMenuBar()
          Returns the receiver's menu bar if one had previously been set, otherwise returns null.
(package private)  Menu[] Control.findMenus(Control control)
           
 Menu Control.getMenu()
          Returns the receiver's pop up menu if it has one, or null if it does not.
(package private)  Menu[] Composite.findMenus(Control control)
           
 

Methods in org.eclipse.swt.widgets with parameters of type Menu
 void MenuItem.setMenu(Menu menu)
          Sets the receiver's pull down menu to the argument.
(package private) static Menu Menu.checkNull(Menu menu)
           
 void Shell.setMenuBar(Menu menu)
           
(package private)  void Display.addPopup(Menu menu)
           
(package private)  void Display.removePopup(Menu menu)
           
(package private)  void Decorations.add(Menu menu)
           
(package private)  void Decorations.fixDecorations(Decorations newDecorations, Control control, Menu[] menus)
           
(package private)  void Decorations.remove(Menu menu)
           
 void Decorations.setMenuBar(Menu menu)
          Sets the receiver's menu bar to the argument, which may be null.
(package private)  void Control.fixChildren(Shell newShell, Shell oldShell, Decorations newDecorations, Decorations oldDecorations, Menu[] menus)
           
 void Control.setMenu(Menu menu)
          Sets the receiver's pop up menu to the argument.
(package private)  void Composite.fixChildren(Shell newShell, Shell oldShell, Decorations newDecorations, Decorations oldDecorations, Menu[] menus)
           
 

Constructors in org.eclipse.swt.widgets with parameters of type Menu
MenuItem(Menu parent, int style)
          Constructs a new instance of this class given its parent (which must be a Menu) and a style value describing its behavior and appearance.
MenuItem(Menu parent, int style, int index)
          Constructs a new instance of this class given its parent (which must be a Menu), a style value describing its behavior and appearance, and the index at which to place it in the items maintained by its parent.
Menu(Menu parentMenu)
          Constructs a new instance of this class given its parent (which must be a Menu) and sets the style for the instance so that the instance will be a drop-down menu on the given parent's parent.