< prev index next >

src/java.desktop/share/classes/javax/swing/JComponent.java

Print this page

        

*** 427,436 **** --- 427,437 ---- /** * Returns the Set of <code>KeyStroke</code>s to use if the component * is managing focus for forward focus traversal. */ + @SuppressWarnings("deprecation") static Set<KeyStroke> getManagingFocusForwardTraversalKeys() { synchronized(JComponent.class) { if (managingFocusForwardTraversalKeys == null) { managingFocusForwardTraversalKeys = new HashSet<KeyStroke>(1); managingFocusForwardTraversalKeys.add(
*** 443,452 **** --- 444,454 ---- /** * Returns the Set of <code>KeyStroke</code>s to use if the component * is managing focus for backward focus traversal. */ + @SuppressWarnings("deprecation") static Set<KeyStroke> getManagingFocusBackwardTraversalKeys() { synchronized(JComponent.class) { if (managingFocusBackwardTraversalKeys == null) { managingFocusBackwardTraversalKeys = new HashSet<KeyStroke>(1); managingFocusBackwardTraversalKeys.add(
*** 2884,2893 **** --- 2886,2896 ---- * @return true if there was a binding to an action, and the action * was enabled * * @since 1.3 */ + @SuppressWarnings("deprecation") protected boolean processKeyBinding(KeyStroke ks, KeyEvent e, int condition, boolean pressed) { InputMap map = getInputMap(condition, false); ActionMap am = getActionMap(false);
< prev index next >