- All Implemented Interfaces:
- Serializable
public class MenuShortcut extends Object implements Serializable
MenuShortcut class represents a keyboard accelerator
 for a MenuItem.
 Menu shortcuts are created using virtual keycodes, not characters. For example, a menu shortcut for Ctrl-a (assuming that Control is the accelerator key) would be created with code like the following:
 MenuShortcut ms = new MenuShortcut(KeyEvent.VK_A, false);
 
or alternatively
 MenuShortcut ms = new MenuShortcut(KeyEvent.getExtendedKeyCodeForChar('A'), false);
 
 Menu shortcuts may also be constructed for a wider set of keycodes
 using the java.awt.event.KeyEvent.getExtendedKeyCodeForChar call.
 For example, a menu shortcut for "Ctrl+cyrillic ef" is created by
 
 MenuShortcut ms = new MenuShortcut(KeyEvent.getExtendedKeyCodeForChar('ф'), false);
 
 Note that shortcuts created with a keycode or an extended keycode defined as a constant in KeyEvent
 work regardless of the current keyboard layout. However, a shortcut made of
 an extended keycode not listed in KeyEvent
 only work if the current keyboard layout produces a corresponding letter.
 
 The accelerator key is platform-dependent and may be obtained
 via Toolkit.getMenuShortcutKeyMaskEx().
- Since:
- 1.1
- See Also:
- Serialized Form
- 
Constructor SummaryConstructors Constructor Description MenuShortcut(int key)Constructs a new MenuShortcut for the specified virtual keycode.MenuShortcut(int key, boolean useShiftModifier)Constructs a new MenuShortcut for the specified virtual keycode.
- 
Method SummaryModifier and Type Method Description booleanequals(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.booleanequals(Object obj)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.intgetKey()Returns the raw keycode of this MenuShortcut.inthashCode()Returns the hashcode for this MenuShortcut.protected StringparamString()Returns the parameter string representing the state of this MenuShortcut.StringtoString()Returns an internationalized description of the MenuShortcut.booleanusesShiftModifier()Returns whether this MenuShortcut must be invoked using the SHIFT key.
- 
Constructor Details- 
MenuShortcutpublic MenuShortcut(int key)Constructs a new MenuShortcut for the specified virtual keycode.
- 
MenuShortcutpublic MenuShortcut(int key, boolean useShiftModifier)Constructs a new MenuShortcut for the specified virtual keycode.
 
- 
- 
Method Details- 
getKeypublic int getKey()Returns the raw keycode of this MenuShortcut.- Returns:
- the raw keycode of this MenuShortcut.
- Since:
- 1.1
- See Also:
- KeyEvent
 
- 
usesShiftModifierpublic boolean usesShiftModifier()Returns whether this MenuShortcut must be invoked using the SHIFT key.- Returns:
- trueif this MenuShortcut must be invoked using the SHIFT key,- falseotherwise.
- Since:
- 1.1
 
- 
equalsReturns 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.
- Returns:
- trueif this MenuShortcut is the same as another,- falseotherwise.
- Since:
- 1.1
 
- 
equalsReturns 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.- Overrides:
- equalsin class- Object
- Parameters:
- obj- the Object to compare with this.
- Returns:
- trueif this MenuShortcut is the same as another,- falseotherwise.
- Since:
- 1.2
- See Also:
- Object.hashCode(),- HashMap
 
- 
hashCodepublic int hashCode()Returns the hashcode for this MenuShortcut.- Overrides:
- hashCodein class- Object
- Returns:
- the hashcode for this MenuShortcut.
- Since:
- 1.2
- See Also:
- Object.equals(java.lang.Object),- System.identityHashCode(java.lang.Object)
 
- 
toStringReturns an internationalized description of the MenuShortcut.
- 
paramStringReturns the parameter string representing the state of this MenuShortcut. This string is useful for debugging.- Returns:
- the parameter string of this MenuShortcut.
- Since:
- 1.1
 
 
-