Class DefaultFocusManager

All Implemented Interfaces:
KeyEventDispatcher, KeyEventPostProcessor
public class DefaultFocusManager extends FocusManager
This class has been obsoleted by the 1.4 focus APIs. While client code may still use this class, developers are strongly encouraged to use java.awt.KeyboardFocusManager and java.awt.DefaultKeyboardFocusManager instead.

Please see How to Use the Focus Subsystem, a section in The Java Tutorial, and the Focus Specification for more information.

Since:
1.2

Field Summary

Fields declared in class javax.swing.FocusManager

FOCUS_MANAGER_CLASS_PROPERTY

Constructor Summary

Constructor Description
DefaultFocusManager()
Constructs a DefaultFocusManager.

Method Summary

Modifier and Type Method Description
boolean compareTabOrder(Component a, Component b)
Compares the components by their focus traversal cycle order.
Component getComponentAfter(Container aContainer, Component aComponent)
Returns the component after.
Component getComponentBefore(Container aContainer, Component aComponent)
Returns the component before.
Component getFirstComponent(Container aContainer)
Returns the first component.
Component getLastComponent(Container aContainer)
Returns the last component.

Methods declared in class java.lang.Object

clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

Constructor Details

DefaultFocusManager

public DefaultFocusManager()
Constructs a DefaultFocusManager.

Method Details

getComponentAfter

public Component getComponentAfter(Container aContainer, Component aComponent)
Returns the component after.
Parameters:
aContainer - a container
aComponent - a component
Returns:
the component after

getComponentBefore

public Component getComponentBefore(Container aContainer, Component aComponent)
Returns the component before.
Parameters:
aContainer - a container
aComponent - a component
Returns:
the component before

getFirstComponent

public Component getFirstComponent(Container aContainer)
Returns the first component.
Parameters:
aContainer - a container
Returns:
the first component

getLastComponent

public Component getLastComponent(Container aContainer)
Returns the last component.
Parameters:
aContainer - a container
Returns:
the last component

compareTabOrder

public boolean compareTabOrder(Component a, Component b)
Compares the components by their focus traversal cycle order.
Parameters:
a - the first component
b - the second component
Returns:
a comparison of the components by their focus traversal cycle order

© 1993, 2021, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/17/docs/api/java.desktop/javax/swing/DefaultFocusManager.html