Searched defs:shortcuts (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/
H A DMenuBar.java50 * A menu bar handles keyboard shortcuts for menu items, passing them
52 * (Keyboard shortcuts, which are optional, provide the user with
57 * {@link MenuBar#shortcuts} and
59 * that retrieve information about the shortcuts a given
316 * Gets an enumeration of all menu shortcuts this menu bar
318 * @return an enumeration of menu shortcuts that this
323 public synchronized Enumeration<MenuShortcut> shortcuts() { method in class:MenuBar
324 Vector shortcuts = new Vector();
327 Enumeration e = getMenu(i).shortcuts();
329 shortcuts
[all...]
H A DMenu.java478 synchronized Enumeration shortcuts() { method in class:Menu
479 Vector shortcuts = new Vector();
484 Enumeration e = ((Menu)mi).shortcuts();
486 shortcuts.addElement(e.nextElement());
491 shortcuts.addElement(ms);
495 return shortcuts.elements();

Completed in 23 milliseconds