Searched defs:aContainer (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/
H A DFocusTraversalPolicy.java74 * aContainer must be a focus cycle root of aComponent or a focus traversal
77 * @param aContainer a focus cycle root of aComponent or focus traversal
79 * @param aComponent a (possibly indirect) child of aContainer, or
80 * aContainer itself
83 * @throws IllegalArgumentException if aContainer is not a focus cycle
85 * either aContainer or aComponent is null
87 public abstract Component getComponentAfter(Container aContainer, argument
92 * aContainer must be a focus cycle root of aComponent or a focus traversal
95 * @param aContainer a focus cycle root of aComponent or focus traversal
97 * @param aComponent a (possibly indirect) child of aContainer, o
105 getComponentBefore(Container aContainer, Component aComponent) argument
119 getFirstComponent(Container aContainer) argument
132 getLastComponent(Container aContainer) argument
145 getDefaultComponent(Container aContainer) argument
[all...]
H A DContainerOrderFocusTraversalPolicy.java105 /*protected*/ private List<Component> getFocusTraversalCycle(Container aContainer) { argument
107 enumerateCycle(aContainer, cycle);
190 * aContainer must be a focus cycle root of aComponent or a focus traversal policy provider.
198 * If aContainer is <a href="doc-files/FocusSpec.html#FocusTraversalPolicyProviders">focus
201 * @param aContainer a focus cycle root of aComponent or a focus traversal policy provider
202 * @param aComponent a (possibly indirect) child of aContainer, or
203 * aContainer itself
206 * @throws IllegalArgumentException if aContainer is not a focus cycle
207 * root of aComponent or focus traversal policy provider, or if either aContainer or
210 public Component getComponentAfter(Container aContainer, Componen argument
308 getComponentBefore(Container aContainer, Component aComponent) argument
401 getFirstComponent(Container aContainer) argument
452 getLastComponent(Container aContainer) argument
506 getDefaultComponent(Container aContainer) argument
[all...]
H A DDefaultKeyboardFocusManager.java1353 * Moves the focus down one focus traversal cycle. If aContainer is a focus
1354 * cycle root, then the focus owner is set to aContainer's default
1356 * aContainer. If aContainer is not a focus cycle root, then no focus
1359 * @param aContainer the Container that is the basis for the focus
1363 public void downFocusCycle(Container aContainer) { argument
1364 if (aContainer != null && aContainer.isFocusCycleRoot()) {
1365 aContainer.transferFocusDownCycle();
H A DKeyboardFocusManager.java2036 * aContainer is a focus cycle root, then the focus owner is set to
2037 * aContainer's default Component to focus, and the current focus cycle
2038 * root is set to aContainer. If aContainer is not a focus cycle root, then
2041 * @param aContainer the Container that is the basis for the focus
2044 public abstract void downFocusCycle(Container aContainer); argument
/openjdk7/jdk/src/share/classes/javax/swing/
H A DLayoutFocusTraversalPolicy.java75 * aContainer must be a focus cycle root of aComponent.
83 * If aContainer is <a href="../../java/awt/doc-files/FocusSpec.html#FocusTraversalPolicyProviders">focus
86 * @param aContainer a focus cycle root of aComponent or a focus traversal policy provider
87 * @param aComponent a (possibly indirect) child of aContainer, or
88 * aContainer itself
91 * @throws IllegalArgumentException if aContainer is not a focus cycle
92 * root of aComponent or a focus traversal policy provider, or if either aContainer or
95 public Component getComponentAfter(Container aContainer, argument
97 if (aContainer == null || aComponent == null) {
98 throw new IllegalArgumentException("aContainer an
131 getComponentBefore(Container aContainer, Component aComponent) argument
156 getFirstComponent(Container aContainer) argument
180 getLastComponent(Container aContainer) argument
[all...]
H A DDefaultFocusManager.java62 public Component getComponentAfter(Container aContainer, argument
65 Container root = (aContainer.isFocusCycleRoot())
66 ? aContainer
67 : aContainer.getFocusCycleRootAncestor();
84 public Component getComponentBefore(Container aContainer, argument
87 Container root = (aContainer.isFocusCycleRoot())
88 ? aContainer
89 : aContainer.getFocusCycleRootAncestor();
106 public Component getFirstComponent(Container aContainer) { argument
107 Container root = (aContainer
126 getLastComponent(Container aContainer) argument
[all...]
H A DDelegatingDefaultFocusManager.java159 public void downFocusCycle(Container aContainer) { argument
160 delegate.downFocusCycle(aContainer);
H A DSortingFocusTraversalPolicy.java108 private List<Component> getFocusTraversalCycle(Container aContainer) { argument
110 enumerateAndSortCycle(aContainer, cycle);
218 * aContainer must be a focus cycle root of aComponent or a focus traversal policy provider.
226 * If aContainer is <a href="../../java/awt/doc-files/FocusSpec.html#FocusTraversalPolicyProviders">focus
229 * @param aContainer a focus cycle root of aComponent or a focus traversal policy provider
230 * @param aComponent a (possibly indirect) child of aContainer, or
231 * aContainer itself
234 * @throws IllegalArgumentException if aContainer is not a focus cycle
235 * root of aComponent or a focus traversal policy provider, or if either aContainer or
238 public Component getComponentAfter(Container aContainer, Componen argument
338 getComponentBefore(Container aContainer, Component aComponent) argument
424 getFirstComponent(Container aContainer) argument
467 getLastComponent(Container aContainer) argument
514 getDefaultComponent(Container aContainer) argument
[all...]

Completed in 589 milliseconds