src/java.desktop/share/classes/java/awt/KeyboardFocusManager.java

Print this page

        

*** 526,537 **** * @see Component#isFocusable * @throws SecurityException if this KeyboardFocusManager is not the * current KeyboardFocusManager for the calling thread's context * and if the calling thread does not have "replaceKeyboardFocusManager" * permission - * @beaninfo - * bound: true */ protected void setGlobalFocusOwner(Component focusOwner) throws SecurityException { Component oldFocusOwner = null; --- 526,535 ----
*** 742,753 **** * @see Component#isFocusable * @throws SecurityException if this KeyboardFocusManager is not the * current KeyboardFocusManager for the calling thread's context * and if the calling thread does not have "replaceKeyboardFocusManager" * permission - * @beaninfo - * bound: true */ protected void setGlobalPermanentFocusOwner(Component permanentFocusOwner) throws SecurityException { Component oldPermanentFocusOwner = null; --- 740,749 ----
*** 845,856 **** * @see Window#isFocusableWindow * @throws SecurityException if this KeyboardFocusManager is not the * current KeyboardFocusManager for the calling thread's context * and if the calling thread does not have "replaceKeyboardFocusManager" * permission - * @beaninfo - * bound: true */ protected void setGlobalFocusedWindow(Window focusedWindow) throws SecurityException { Window oldFocusedWindow = null; --- 841,850 ----
*** 950,961 **** * @see Component#requestFocusInWindow() * @throws SecurityException if this KeyboardFocusManager is not the * current KeyboardFocusManager for the calling thread's context * and if the calling thread does not have "replaceKeyboardFocusManager" * permission - * @beaninfo - * bound: true */ protected void setGlobalActiveWindow(Window activeWindow) throws SecurityException { Window oldActiveWindow; --- 944,953 ----
*** 1006,1017 **** * @param defaultPolicy the new, default FocusTraversalPolicy * @see #getDefaultFocusTraversalPolicy * @see Container#setFocusTraversalPolicy * @see Container#getFocusTraversalPolicy * @throws IllegalArgumentException if defaultPolicy is null - * @beaninfo - * bound: true */ public void setDefaultFocusTraversalPolicy(FocusTraversalPolicy defaultPolicy) { if (defaultPolicy == null) { throw new IllegalArgumentException("default focus traversal policy cannot be null"); --- 998,1007 ----
*** 1111,1122 **** * or if keystrokes contains {@code null}, * or if any keystroke * represents a {@code KEY_TYPED} event, * or if any keystroke already maps * to another default focus traversal operation - * @beaninfo - * bound: true */ public void setDefaultFocusTraversalKeys(int id, Set<? extends AWTKeyStroke> keystrokes) { --- 1101,1110 ----
*** 1270,1281 **** * @param newFocusCycleRoot the new focus cycle root * @see #getCurrentFocusCycleRoot * @see #getGlobalCurrentFocusCycleRoot * @throws SecurityException if the calling thread does not have * "replaceKeyboardFocusManager" permission - * @beaninfo - * bound: true */ public void setGlobalCurrentFocusCycleRoot(Container newFocusCycleRoot) throws SecurityException { checkReplaceKFMPermission(); --- 1258,1267 ----