当前页面: 
在线文档首页 > 
JDK 5 Documentation v1.1.8, Java 2 SDK 英文文档
Class java.awt.MenuBar - JDK 5 Documentation v1.1.8, Java 2 SDK 英文文档
All Packages  Class Hierarchy  This Package  Previous  Next  Index
  Class java.awt.MenuBar
java.lang.Object
   |
   +----java.awt.MenuComponent
           |
           +----java.awt.MenuBar
  -  public class MenuBar
  -  extends MenuComponent
  -  implements MenuContainer
The 
MenuBar class encapsulates the platform's 
 concept of a menu bar bound to a frame. In order to associate 
 the menu bar with a 
Frame object, call the 
 frame's 
setMenuBar method.
 
 
 This is what a menu bar might look like:
 
  
 
 A menu bar handles keyboard shortcuts for menu items, passing them 
 along to its child menus. 
 (Keyboard shortcuts, which are optional, provide the user with
 an alternative to the mouse for invoking a menu item and the
 action that is associated with it.)
 Each menu item can maintain an instance of MenuShortcut. 
 The MenuBar class defines several methods, 
 shortCuts and 
 getShortcutMenuItem 
 that retrieve information about the shortcuts a given
 menu bar is managing.
    -  See Also:
    
-  Frame, setMenuBar, Menu, MenuItem, MenuShortcut
   
  -   MenuBar() MenuBar()
-   Creates a new menu bar.
   
  -   add(Menu) add(Menu)
-   Adds the specified menu to the menu bar.
  
-   addNotify() addNotify()
-   Creates the menu bar's peer.
  
-   countMenus() countMenus()
-   
Deprecated.
  
-   deleteShortcut(MenuShortcut) deleteShortcut(MenuShortcut)
-   Deletes the specified menu shortcut.
  
-   getHelpMenu() getHelpMenu()
-   Gets the help menu on the menu bar.
  
-   getMenu(int) getMenu(int)
-   Gets the specified menu.
  
-   getMenuCount() getMenuCount()
-   Gets the number of menus on the menu bar.
  
-   getShortcutMenuItem(MenuShortcut) getShortcutMenuItem(MenuShortcut)
-   Gets the instance of MenuItemassociated 
 with the specifiedMenuShortcutobject,
 ornullif none has been specified.
-   remove(int) remove(int)
-   Removes the menu located at the specified 
 index from this menu bar.
  
-   remove(MenuComponent) remove(MenuComponent)
-   Removes the specified menu component from this menu bar.
  
-   removeNotify() removeNotify()
-   Removes the menu bar's peer.
  
-   setHelpMenu(Menu) setHelpMenu(Menu)
-   Sets the help menu on this menu bar to be the specified menu.
  
-   shortcuts() shortcuts()
-  
 Gets an enumeration of all menu shortcuts this menu bar 
 is managing.
   
 MenuBar
MenuBar
 public MenuBar()
  -  Creates a new menu bar.
 
   
 addNotify
addNotify
 public void addNotify()
  -  Creates the menu bar's peer.  The peer allows us to change the 
 appearance of the menu bar without changing any of the menu bar's 
 functionality.
 
 removeNotify
removeNotify
 public void removeNotify()
  -  Removes the menu bar's peer.  The peer allows us to change the 
 appearance of the menu bar without changing any of the menu bar's 
 functionality.
   
- 
    -  Overrides:
    
-  removeNotify in class MenuComponent
  
 
 getHelpMenu
getHelpMenu
 public Menu getHelpMenu()
  -  Gets the help menu on the menu bar.
   
- 
    -  Returns:
    
-  the help menu on this menu bar.
  
 
 setHelpMenu
setHelpMenu
 public void setHelpMenu(Menu m)
  -  Sets the help menu on this menu bar to be the specified menu.
   
- 
    -  Parameters:
    
-  m - the menu to be set as the help menu.
  
 
 add
add
 public Menu add(Menu m)
  -  Adds the specified menu to the menu bar.
   
- 
    -  Parameters:
    
-  m - the menu to be added.
    
-  Returns:
    
-  the menu added.
    
-  See Also:
    
-  remove, remove
  
 
 remove
remove
 public void remove(int index)
  -  Removes the menu located at the specified 
 index from this menu bar.
   
- 
    -  Parameters:
    
-  index - the position of the menu to be removed.
    
-  See Also:
    
-  add
  
 
 remove
remove
 public void remove(MenuComponent m)
  -  Removes the specified menu component from this menu bar.
   
- 
    -  Parameters:
    
-  m - the menu component to be removed.
    
-  See Also:
    
-  add
  
 
 getMenuCount
getMenuCount
 public int getMenuCount()
  -  Gets the number of menus on the menu bar.
   
- 
    -  Returns:
    
-  the number of menus on the menu bar.
  
 
 countMenus
countMenus
 public int countMenus()
-  Note: countMenus() is deprecated.
As of JDK version 1.1,
 replaced by getMenuCount().
 
 getMenu
getMenu
 public Menu getMenu(int i)
  -  Gets the specified menu.
   
- 
    -  Parameters:
    
-  i - the index position of the menu to be returned.
    
-  Returns:
    
-  the menu at the specified index of this menu bar.
  
 
 shortcuts
shortcuts
 public synchronized Enumeration shortcuts()
  -  Gets an enumeration of all menu shortcuts this menu bar 
 is managing.
   
- 
    -  Returns:
    
-  an enumeration of menu shortcuts that this
                      menu bar is managing.
    
-  See Also:
    
-  MenuShortcut
  
 
 getShortcutMenuItem
getShortcutMenuItem
 public MenuItem getShortcutMenuItem(MenuShortcut s)
  -  Gets the instance of MenuItemassociated 
 with the specifiedMenuShortcutobject,
 ornullif none has been specified.
   
- 
    -  Parameters:
    
-  s - the specified menu shortcut.
    
-  See Also:
    
-  MenuItem, MenuShortcut
  
 
 deleteShortcut
deleteShortcut
 public void deleteShortcut(MenuShortcut s)
  -  Deletes the specified menu shortcut.
   
- 
    -  Parameters:
    
-  s - the menu shortcut to delete.
  
 
All Packages  Class Hierarchy  This Package  Previous  Next  Index
Submit a bug or feature - Version 1.1.8 of Java Platform API Specification
Java is a trademark or registered trademark of Sun Microsystems,  Inc. in the US and other countries.
Copyright 1995-1999 Sun Microsystems, Inc. 901 San Antonio Road,
Palo Alto, California, 94303, U.S.A.  All Rights Reserved.