java.awt.peer
Interface MenuBarPeer

All Superinterfaces:
MenuComponentPeer

public interface MenuBarPeer
extends MenuComponentPeer

Disabled: no SafeJ information.

The peer interface for MenuBar. The peer interfaces are intended only for use in porting the AWT. They are not intended for use by application developers, and developers should not implement peers nor invoke any of the peer methods directly on the peer instances.


Method Summary
 void addHelpMenu(Menu m)
          Adds a help menu to the menu bar.
 void addMenu(Menu m)
          Adds a menu to the menu bar.
 void delMenu(int index)
          Deletes a menu from the menu bar.
 
Methods inherited from interface java.awt.peer.MenuComponentPeer
dispose, setFont
 

Method Detail

addMenu

void addMenu(Menu m)
Class is disabled.

Adds a menu to the menu bar.

Parameters:
m - the menu to add
See Also:
MenuBar.add(Menu)

delMenu

void delMenu(int index)
Class is disabled.

Deletes a menu from the menu bar.

Parameters:
index - the index of the menu to remove
See Also:
MenuBar.remove(int)

addHelpMenu

void addHelpMenu(Menu m)
Class is disabled.

Adds a help menu to the menu bar.

Parameters:
m - the help menu to add
See Also:
MenuBar.setHelpMenu(Menu)