MenuBarPeer is an interface that defines the basis for menu bars.
public abstract interface java.awt.peer.MenuBarPeer
extends java.awt.peer.MenuComponentPeer {
// Interface Methods
public abstract void addHelpMenu (Menu m);
public abstract void addMenu (Menu m);
public abstract void delMenu (int index);
}
Menu to designate as the help menu with the menu bar's peer.
Sets a particular menu to be the help menu of the menu bar's peer.
Menu to add to the menu bar's peer
Adds a menu to the menu bar's peer.
Menu position to delete from the menu bar's peer.
Deletes a menu from the menu bar's peer.
Menu, MenuComponentPeer