MenuItem.MenuItem
Class Overview | Class Members |
This Package |
All Packages
public MenuItem()
Description
Constructs a new MenuItem with an empty label and no keyboard
shortcut.
public MenuItem( String label )
Parameters
- label
- the label for this menu item.
Description
Constructs a new MenuItem with the specified label
and no keyboard shortcut. Note that use of "-" in
a label is reserved to indicate a separator between
menu items. By default, all menu items except for
separators are enabled.
public MenuItem( String label,
MenuShortcut s )
Parameters
- label
- the label for this menu item.
- s
- the instance of MenuShortcut
associated with this menu item.
Description
Create a menu item with an associated keyboard shortcut.
Note that use of "-" in a label is reserved to indicate
a separator between menu items. By default, all menu
items except for separators are enabled.