All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class java.awt.MenuShortcut

java.lang.Object
   |
   +----java.awt.Event
           |
           +----java.awt.MenuShortcut

public class MenuShortcut
extends Event
An Event which represents a keyboard accelerator for a MenuItem.


Constructor Index

 o MenuShortcut(int)
Constructs a new MenuShortcut for the specified key.
 o MenuShortcut(int, boolean)
Constructs a new MenuShortcut for the specified key.

Method Index

 o equals(MenuShortcut)
Returns whether this MenuShortcut is the same as another: equality is defined to mean that both MenuShortcuts use the same key and both either use or don't use the SHIFT key.
 o getKey()
Return the raw keycode of this MenuShortcut.
 o paramString()
Returns the parameter String of this Event.
 o usesShiftModifier()
Return whether this MenuShortcut must be invoked using the SHIFT key.

Constructors

 o MenuShortcut
  public MenuShortcut(int key)
Constructs a new MenuShortcut for the specified key.

Parameters:
key - the raw keycode for this MenuShortcut, as would be returned in the key field of an Event if this key were pressed.
 o MenuShortcut
  public MenuShortcut(int key,
                      boolean useShiftModifier)
Constructs a new MenuShortcut for the specified key.

Parameters:
key - the raw keycode for this MenuShortcut, as would be returned in the key field of an Event if this key were pressed.
useShiftModifier - indicates whether this MenuShortcut is invoked with the SHIFT key down.

Methods

 o getKey
  public int getKey()
Return the raw keycode of this MenuShortcut.

 o usesShiftModifier
  public boolean usesShiftModifier()
Return whether this MenuShortcut must be invoked using the SHIFT key.

 o equals
  public boolean equals(MenuShortcut s)
Returns whether this MenuShortcut is the same as another: equality is defined to mean that both MenuShortcuts use the same key and both either use or don't use the SHIFT key.

Parameters:
s - the MenuShortcut to compare with this.
 o paramString
  protected String paramString()
Returns the parameter String of this Event.

Overrides:
paramString in class Event

All Packages  Class Hierarchy  This Package  Previous  Next  Index