Class MenuBar
- All Implemented Interfaces:
-
MenuContainer
,Serializable
,Accessible
public class MenuBar extends MenuComponent implements MenuContainer, Accessible
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(java.awt.MenuShortcut)
that retrieve information about the shortcuts a given menu bar is managing.
- Since:
- 1.0
- See Also:
Nested Class Summary
Modifier and Type | Class | Description |
---|---|---|
protected class |
MenuBar.AccessibleAWTMenuBar |
Inner class of MenuBar used to provide default support for accessibility. |
Nested classes/interfaces declared in class java.awt.MenuComponent
MenuComponent.AccessibleAWTMenuComponent
Constructor Summary
Constructor | Description |
---|---|
MenuBar() |
Creates a new menu bar. |
Method Summary
Modifier and Type | Method | Description |
---|---|---|
Menu |
add |
Adds the specified menu to the menu bar. |
void |
addNotify() |
Creates the menu bar's peer. |
int |
countMenus() |
Deprecated. |
void |
deleteShortcut |
Deletes the specified menu shortcut. |
AccessibleContext |
getAccessibleContext() |
Gets the AccessibleContext associated with this MenuBar. |
Menu |
getHelpMenu() |
Gets the help menu on the menu bar. |
Menu |
getMenu |
Gets the specified menu. |
int |
getMenuCount() |
Gets the number of menus on the menu bar. |
MenuItem |
getShortcutMenuItem |
Gets the instance of MenuItem associated with the specified MenuShortcut object, or null if none of the menu items being managed by this menu bar is associated with the specified menu shortcut. |
void |
remove |
Removes the menu located at the specified index from this menu bar. |
void |
remove |
Removes the specified menu component from this menu bar. |
void |
removeNotify() |
Removes the menu bar's peer. |
void |
setHelpMenu |
Sets the specified menu to be this menu bar's help menu. |
Enumeration<MenuShortcut> |
shortcuts() |
Gets an enumeration of all menu shortcuts this menu bar is managing. |
Methods declared in class java.awt.MenuComponent
dispatchEvent, getFont, getName, getParent, getTreeLock, paramString, postEvent, processEvent, setFont, setName, toString
Methods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods declared in interface java.awt.MenuContainer
getFont, postEvent
Constructor Details
MenuBar
public MenuBar() throws HeadlessException
- Throws:
-
HeadlessException
- if GraphicsEnvironment.isHeadless() returns true. - See Also:
Method Details
addNotify
public void addNotify()
removeNotify
public void removeNotify()
- Overrides:
-
removeNotify
in classMenuComponent
getHelpMenu
public Menu getHelpMenu()
- Returns:
- the help menu on this menu bar.
setHelpMenu
public void setHelpMenu(Menu m)
- Parameters:
-
m
- the menu to be set as the help menu
add
public Menu add(Menu m)
- Parameters:
-
m
- the menu to be added - Returns:
- the menu added
- See Also:
remove
public void remove(int index)
- Parameters:
-
index
- the position of the menu to be removed. - See Also:
remove
public void remove(MenuComponent m)
- Specified by:
-
remove
in interfaceMenuContainer
- Parameters:
-
m
- the menu component to be removed. - See Also:
getMenuCount
public int getMenuCount()
- Returns:
- the number of menus on the menu bar.
- Since:
- 1.1
countMenus
@Deprecated public int countMenus()
getMenuCount()
.- Returns:
- the number of menus on the menu bar.
getMenu
public Menu getMenu(int i)
- Parameters:
-
i
- the index position of the menu to be returned. - Returns:
- the menu at the specified index of this menu bar.
shortcuts
public Enumeration<MenuShortcut> shortcuts()
- Returns:
- an enumeration of menu shortcuts that this menu bar is managing.
- Since:
- 1.1
- See Also:
getShortcutMenuItem
public MenuItem getShortcutMenuItem(MenuShortcut s)
MenuItem
associated with the specified MenuShortcut
object, or null
if none of the menu items being managed by this menu bar is associated with the specified menu shortcut.- Parameters:
-
s
- the specified menu shortcut. - Returns:
- the menu item for the specified shortcut.
- Since:
- 1.1
- See Also:
deleteShortcut
public void deleteShortcut(MenuShortcut s)
- Parameters:
-
s
- the menu shortcut to delete. - Since:
- 1.1
getAccessibleContext
public AccessibleContext getAccessibleContext()
- Specified by:
-
getAccessibleContext
in interfaceAccessible
- Overrides:
-
getAccessibleContext
in classMenuComponent
- Returns:
- an AccessibleAWTMenuBar that serves as the AccessibleContext of this MenuBar
- Since:
- 1.3
© 1993, 2021, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/17/docs/api/java.desktop/java/awt/MenuBar.html
getMenuCount()
.