Lines Matching defs:shortcuts
50 * 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() {
324 Vector shortcuts = new Vector();
327 Enumeration e = getMenu(i).shortcuts();
329 shortcuts.addElement(e.nextElement());
332 return shortcuts.elements();