From the user's point of view, the component with the keyboard focus is generally prominent with a dotted or black border, for example. The window containing the component is also more prominent than other windows onscreen. These visual cues let the user know to which component any typing will relate. Only one component at a time in the window system can have the keyboard focus.
Exactly how a window gains the focus
depends on the windowing system.
There is no foolproof way, across all platforms,
to ensure that a window gains the focus.
On some operating systems, such as Microsoft Windows,
the front window usually becomes the focused window.
In these cases, the
Window.toFront
method moves the window to the front, thereby giving it
the focus.
However, on other operating systems, such as Solaris™ Operating System, the window manager may choose
the focused window based on cursor position, and in
these cases the behavior of the Window.toFront
method is different.
A component generally gains the focus when the user clicks it, or when the user tabs between components, or otherwise interacts with a component. A component can also be given the focus programmatically, such as when its containing frame or dialog-box is made visible. This code snippet shows how to give a particular component the focus every time the window gains the focus:
//Make textField get the focus whenever frame is activated. frame.addWindowFocusListener(new WindowAdapter() { public void windowGainedFocus(WindowEvent e) { textField.requestFocusInWindow(); } });
If you want to ensure that a particular component gains
the focus the first time a window is activated, you can
call the
requestFocusInWindow
method on the component after the component
has been realized, but before the frame is displayed.
The following sample code shows how this operation can be done:
//...Where initialization occurs... JFrame frame = new JFrame("Test"); JPanel panel = new JPanel(new BorderLayout()); //...Create a variety of components here... //Create the component that will have the initial focus. JButton button = new JButton("I am first"); panel.add(button); frame.getContentPane().add(panel); //Add it to the panel frame.pack(); //Realize the components. //This button will have the initial focus. button.requestFocusInWindow(); frame.setVisible(true); //Display the window.
Alternatively, you can apply a custom FocusTraversalPolicy
to the frame
and call the getDefaultComponent
method to determine which
component will gain the focus.
JComponent
methods, such as
setNextFocusableComponent
,
getNextFocusableComponent
,
requestDefaultFocus
, and
isManagingFocus
, were used to
manage the keyboard focus.
These methods are now deprecated.
Another method, requestFocus
, is discouraged
because it tries to give the focus to the component's window,
which is not always possible. As of JDK 1.4,
you should instead use the requestFocusInWindow
method,
which does not attempt to make the component's window
focused. The method returns a boolean value indicating whether
the method succeeded.
The rest of this section covers the following topics:
The focus subsystem is designed to do the right thing as invisibly as possible. In most cases it behaves in a reasonable manner, and if it does not you can tweak its behavior in various ways. Some common scenarios might include:
requestFocusInWindow
method
to set the focus on a component when the window becomes
visible.
The FocusConceptsDemo
example illustrates a few concepts.
The
KeyboardFocusManager
is a critical element of the focus subsystem.
It manages state and initiates changes.
The keyboard manager tracks the focus owner
the component that receives typing from the keyboard.
The focused window is the window that contains
the focus owner.
JWindow
component in your GUI,
you should know that the JWindow
component's owning frame must
be visible in order for any components in the window to get the focus.
By default, if you do not specify an owning frame for
a JWindow
component, an invisible owning frame is
created for it. The result is that components in the
JWindow
component might not be able to get the focus.
The solution is either to specify a
visible owning frame when creating the
JWindow
component, or to use an undecorated
JFrame
component instead.
A focus cycle (or focus traversal cycle)
is a set of components that share a common ancestor in the
containment hierarchy.
The focus cycle root is the
container that is the root for a particular
focus traversal cycle. By default, every
JWindow
and JInternalFrame
component
can be a focus cycle root. A focus cycle root can itself
contain one or more focus cycle roots.
The following Swing objects can be focus cycle roots:
JApplet
, JDesktopPane
, JDialog
,
JEditorPane
, JFrame
, JInternalFrame
,
and JWindow
.
While it might appear that JTable
and JTree
objects are focus cycle roots, they
are not.
A focus traversal policy determines the order in which
a group of components are navigated. Swing provides
the
class, which
decides the order of navigation based on layout
manager-dependent factors, such as size,
location, and orientation of components. Within a focus
cycle, components can be navigated in a forward or
backward direction. In a hierarchy of focus cycle
roots, upwards traversal takes the focus out of the
current cycle into the parent cycle.
In most Look and Feel models,
components are navigated using the
Tab and Shift-Tab keys. These keys are the default
focus traversal keys and can be changed
programmatically. For example, you can add Enter
as a forward focus traversal key with the following
four lines of code:
LayoutFocusTraversalPolicy
Set forwardKeys = getFocusTraversalKeys( KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS); Set newForwardKeys = new HashSet(forwardKeys); newForwardKeys.add(KeyStroke.getKeyStroke(KeyEvent.VK_ENTER, 0)); setFocusTraversalKeys(KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS, newForwardKeys);
JTable
.
You have just received a brief introduction to the focus architecture.
If you want more details, see the specification for the
Focus Subsystem.
Validating Input
A common requirement of GUI design is a component that restricts the user's input for example, a text field that allows only numeric input in decimal format (money, for example) or a text field that allows only 5 digits for a zip code. Release 1.4 provides a handy, easy-to-use formatted text field component that allows input to be restricted to a variety of localizable formats. You can also specify a custom formatter for the text field, which can perform special checking such as determining whether values are not only formatted correctly, but also reasonable.
You can use an input verifier as an alternative to a custom formatter,
or when you have a component that is not a text field.
An input verifier allows you to
reject specific values, such as a properly formatted but
invalid zip code, or values outside of a desired range,
for example a body temperature higher than 110°F.
To use an input verifier, you create a subclass of
(a class introduced in JDK 1.3), create an instance of
your subclass, and set the instance as the input verifier
for one or more components.
InputVerifier
A component's input verifier is consulted whenever the
component is about to lose the focus. If the component's
value is not acceptable, the input verifier can take
appropriate action, such as refusing to yield the focus
on the component or replacing the user's input with the
last valid value and then allowing the focus to transfer
to the next component. However, InputVerifier
is not called when the focus is transferred to another toplevel component.
The following two examples show mortgage calculators. One uses formatted text fields and the other uses input verification with standard text fields.
You can find the code for the Input Verification demo in
InputVerificationDemo.java
. Here is the code for the InputVerifier
subclass, MyVerifier
:
class MyVerifier extends InputVerifier implements ActionListener { double MIN_AMOUNT = 10000.0; double MAX_AMOUNT = 10000000.0; double MIN_RATE = 0.0; int MIN_PERIOD = 1; int MAX_PERIOD = 40; public boolean shouldYieldFocus(JComponent input) { boolean inputOK = verify(input); makeItPretty(input); updatePayment(); if (inputOK) { return true; } else { Toolkit.getDefaultToolkit().beep(); return false; } } protected void updatePayment() { double amount = DEFAULT_AMOUNT; double rate = DEFAULT_RATE; int numPeriods = DEFAULT_PERIOD; double payment = 0.0; //Parse the values. try { amount = moneyFormat.parse(amountField.getText()). doubleValue(); } catch (ParseException pe) {pe.printStackTrace();} try { rate = percentFormat.parse(rateField.getText()). doubleValue(); } catch (ParseException pe) {pe.printStackTrace();} try { numPeriods = decimalFormat.parse(numPeriodsField.getText()). intValue(); } catch (ParseException pe) {pe.printStackTrace();} //Calculate the result and update the GUI. payment = computePayment(amount, rate, numPeriods); paymentField.setText(paymentFormat.format(payment)); } //This method checks input, but should cause no side effects. public boolean verify(JComponent input) { return checkField(input, false); } protected void makeItPretty(JComponent input) { checkField(input, true); } protected boolean checkField(JComponent input, boolean changeIt) { if (input == amountField) { return checkAmountField(changeIt); } else if (input == rateField) { return checkRateField(changeIt); } else if (input == numPeriodsField) { return checkNumPeriodsField(changeIt); } else { return true; //should not happen } } //Checks that the amount field is valid. If it is valid, //it returns true; otherwise, returns false. If the //change argument is true, this method sets the //value to the minimum or maximum value if necessary and (even if not) sets it to the //parsed number so that it looks good -- no letters, //for example. protected boolean checkAmountField(boolean change) { boolean wasValid = true; double amount = DEFAULT_AMOUNT; //Parse the value. try { amount = moneyFormat.parse(amountField.getText()). doubleValue(); } catch (ParseException pe) { pe.printStackTrace(); wasValid = false; } //Value was invalid. if ((amount < MIN_AMOUNT) || (amount > MAX_AMOUNT)) { wasValid = false; if (change) { if (amount < MIN_AMOUNT) { amount = MIN_AMOUNT; } else { // amount is greater than MAX_AMOUNT amount = MAX_AMOUNT; } } } //Whether value was valid or not, format it nicely. if (change) { amountField.setText(moneyFormat.format(amount)); amountField.selectAll(); } return wasValid; } //Checks that the rate field is valid. If it is valid, //it returns true; otherwise, returns false. If the //change argument is true, this method reigns in the //value if necessary and (even if not) sets it to the //parsed number so that it looks good -- no letters, //for example. protected boolean checkRateField(boolean change) { ...//Similar to checkAmountField... } //Checks that the numPeriods field is valid. If it is valid, //it returns true; otherwise, returns false. If the //change argument is true, this method reigns in the //value if necessary and (even if not) sets it to the //parsed number so that it looks good -- no letters, //for example. protected boolean checkNumPeriodsField(boolean change) { ...//Similar to checkAmountField... } public void actionPerformed(ActionEvent e) { JTextField source = (JTextField)e.getSource(); shouldYieldFocus(source); //ignore return value source.selectAll(); } }
Note that the verify
method is implemented to
detect invalid values but does nothing else.
The verify
method exists only to determine
whether the input is valid it should never bring
up a dialog-box or cause any other side effects.
The shouldYieldFocus
method calls verify
and, if a values is invalid, sets it to the minimum or maximum value. The
shouldYieldFocus
method is allowed to cause side
effects, in this case, it always formats the text field and
may also change its value. In our example,
the shouldYieldFocus
method
always returns true so that the transfer
of the focus is never actually prevented. This is just one way
verification can be implemented. Find another version
of this demo called
InputVerificationDialogDemo
that puts up a dialog-box when user input is invalid and requires
the user to enter a legal value.
The input verifier is installed using the
setInputVerifier
method of the JComponent
class.
For example, the InputVerificationDemo
has the following code:
private MyVerifier verifier = new MyVerifier(); ... amountField.setInputVerifier(verifier);
For a component to gain the focus, it must satisfy three requirements: it must be visible, enabled, and focusable. An input map may also be given. For more information about input map, read How to Use Key Bindings.
The TrackFocusDemo
example defines the simple component Picture
.
Its constructor is shown below:
public Picture(Image image) { this.image = image; setFocusable(true); addMouseListener(this); addFocusListener(this); }
The call to the setFocusable(true)
method makes the
component focusable. If you explicitly give your component
key bindings in its WHEN_FOCUSED
input map,
you do not need to call the setFocusable
method.
To visually show changes in the focus
(by drawing a red border only when the component has
the focus), Picture
has a
focus listener.
To gain the focus when the user clicks on the picture,
the component has a
mouse listener. The listener's mouseClicked
method requests
for the focus to be transferred to the picture. Here is the code:
public void mouseClicked(MouseEvent e) { //Since the user clicked on us, let us get focus! requestFocusInWindow(); }
See Tracking Focus Changes to Multiple
Components for more discussion of the TrackFocusDemo example.
Customizing Focus Traversal
The focus subsystem determines a default order that is
applied when using the focus traversal keys (such as Tab) to navigate.
The policy of a Swing application is determined by
LayoutFocusTraversalPolicy
. You can set a focus traversal policy on any
Container
by using the
setFocusCycleRoot
method.
However, if the container is
not a focus cycle root, it may have no apparent effect.
Alternatively you can pass focus traversal policy providers to the
FocusTraversalPolicy
methods instead of focus cycle roots.
Use the
isFocusTraversalPolicyProvider()
method to determine whether a Container
is a focus traversal policy provider.
Use the
setFocusTraversalPolicyProvider()
method to set a container for providing focus traversal policy.
The FocusTraversalDemo
example
demonstrates how to customize focus behavior.
You can find the demo's code in
FocusTraversalDemo.java
.
The check box was removed from the focus cycle with this line of code:
togglePolicy.setFocusable(false);
FocusTraversalPolicy
:
... JTextField tf1 = new JTextField("Field 1"); JTextField tf2 = new JTextField("A Bigger Field 2"); JTextField tf3 = new JTextField("Field 3"); JTextField tf4 = new JTextField("A Bigger Field 4"); JTextField tf5 = new JTextField("Field 5"); JTextField tf6 = new JTextField("A Bigger Field 6"); JTable table = new JTable(4,3); ... public FocusTraversalDemo() { super(new BorderLayout()); JTextField tf1 = new JTextField("Field 1"); JTextField tf2 = new JTextField("A Bigger Field 2"); JTextField tf3 = new JTextField("Field 3"); JTextField tf4 = new JTextField("A Bigger Field 4"); JTextField tf5 = new JTextField("Field 5"); JTextField tf6 = new JTextField("A Bigger Field 6"); JTable table = new JTable(4,3); togglePolicy = new JCheckBox("Custom FocusTraversalPolicy"); togglePolicy.setActionCommand("toggle"); togglePolicy.addActionListener(this); togglePolicy.setFocusable(false); //Remove it from the focus cycle. //Note that HTML is allowed and will break this run of text //across two lines. label = new JLabel("Use Tab (or Shift-Tab) to navigate from component to component.Control-Tab (or Control-Shift-Tab) allows you to break out of the JTable."); JPanel leftTextPanel = new JPanel(new GridLayout(3,2)); leftTextPanel.add(tf1, BorderLayout.PAGE_START); leftTextPanel.add(tf3, BorderLayout.CENTER); leftTextPanel.add(tf5, BorderLayout.PAGE_END); leftTextPanel.setBorder(BorderFactory.createEmptyBorder(0,0,5,5)); JPanel rightTextPanel = new JPanel(new GridLayout(3,2)); rightTextPanel.add(tf2, BorderLayout.PAGE_START); rightTextPanel.add(tf4, BorderLayout.CENTER); rightTextPanel.add(tf6, BorderLayout.PAGE_END); rightTextPanel.setBorder(BorderFactory.createEmptyBorder(0,0,5,5)); JPanel tablePanel = new JPanel(new GridLayout(0,1)); tablePanel.add(table, BorderLayout.CENTER); tablePanel.setBorder(BorderFactory.createEtchedBorder()); JPanel bottomPanel = new JPanel(new GridLayout(2,1)); bottomPanel.add(togglePolicy, BorderLayout.PAGE_START); bottomPanel.add(label, BorderLayout.PAGE_END); add(leftTextPanel, BorderLayout.LINE_START); add(rightTextPanel, BorderLayout.CENTER); add(tablePanel, BorderLayout.LINE_END); add(bottomPanel, BorderLayout.PAGE_END); setBorder(BorderFactory.createEmptyBorder(20,20,20,20)); Vector
order = new Vector (7); order.add(tf1); order.add(tf2); order.add(tf3); order.add(tf4); order.add(tf5); order.add(tf6); order.add(table); newPolicy = new MyOwnFocusTraversalPolicy(order); }
To use a custom FocusTraversalPolicy
,
implement the following code on any focus cycle root.
MyOwnFocusTraversalPolicy newPolicy = new MyOwnFocusTraversalPolicy(); frame.setFocusTraversalPolicy(newPolicy);
You can remove the custom focus traversal policy
by setting the FocusTraversalPolicy
to
null
, which will restore the default policy.
Tracking Focus Changes to Multiple Components
In some situations an application may need to track which component has the focus. This information might be used to dynamically update menus or perhaps a status bar. If you need to track the focus only on specific components, it may make sense to implement a focus event listener.
If a focus listener is not appropriate, you can instead
register a PropertyChangeListener
on the
KeyboardFocusManager
. The property change
listener is notified of every change
involving the focus, including changes to the
focus owner, the focused window,
and the default focus traversal policy. See the
KeyboardFocusManager
Properties table for a complete list.
The following example demonstrates tracking the focus owner by installing a property change listener on the keyboard focus manager.
Picture
component. The Picture
that has the focus is indicated with a red
border. A label at the bottom of the window
describes the Picture
that has the focus.
Picture
by using Tab
or Shift-Tab, or by clicking an image.
Because a property change listener has been
registered on the keyboard focus manager,
the change in focus is detected and the label is
updated appropriately.
You can view the demo's code in
TrackFocusDemo.java
. The custom component used for drawing the images can be found in
Picture.java
. Here is the code that defines and installs the
property change listener:
KeyboardFocusManager focusManager = KeyboardFocusManager.getCurrentKeyboardFocusManager(); focusManager.addPropertyChangeListener( new PropertyChangeListener() { public void propertyChange(PropertyChangeEvent e) { String prop = e.getPropertyName(); if (("focusOwner".equals(prop)) && ((e.getNewValue()) instanceof Picture)) { Component comp = (Component)e.getNewValue(); String name = comp.getName(); Integer num = new Integer(name); int index = num.intValue(); if (index < 0 || index > comments.length) { index = 0; } info.setText(comments[index]); } } } );
The custom component, Picture
,
is responsible for drawing the image. All six
components are defined in this manner:
pic1 = new Picture(createImageIcon("images/" + mayaString + ".gif", mayaString).getImage()); pic1.setName("1");
Focus transfers are asynchronous. This quality can lead to some odd timing-related problems and assumptions, especially during automatic transfers of the focus. For example, imagine an application with a window containing a Start button, a Cancel button and a text field. The components are added in this order:
LayoutFocusTraversalPolicy
determines the focus traversal policy
in this case, it is the order that the components
were added to their container.
In this example, the desired behavior is that the
Start button has the initial focus, and when the
Start button is clicked, it is disabled, and then the Cancel
button receives the focus.
The correct way to
implement this behavior would be to add the components
to the container in the desired order or to
create a custom focus traversal policy.
If, for some reason, that is not possible,
then you can implement this behavior
with the following code snippet:
public void actionPerformed(ActionEvent e) { //This works. start.setEnabled(false); cancel.requestFocusInWindow(); }
As desired, the focus goes from the Start button to the Cancel button, rather than to the text field. But a different result would occur if the same methods were called in the opposite order as follows:
public void actionPerformed(ActionEvent e) { //This does not work. cancel.requestFocusInWindow(); start.setEnabled(false); }
requestFocusInWindow
method
initiates the focus transfer, but it does not immediately move the focus
to the Cancel button.
When the Start button is disabled, the focus is
transferred to the next component (so there is always a component
with the focus) and, in this case, it would then move the focus to the
text field, not to the Cancel button.
There are several situations in which you need to make focus requests after all other changes that might affect the focus applies to:
removeNotify
method on the focus owner.
For more detailed information about the focus architecture, see the specification for the Focus Subsystem. You may also find How to Write a Focus Listener useful.
All of this API was introduced in JDK 1.4.
Method (in Component ) |
Purpose |
---|---|
isFocusOwner() | Returns true if the component is the focus
owner. This method, introduced in JDK 1.4,
renders obsolete hasFocus .
|
setRequestFocusEnabled(boolean) isRequestFocusEnabled() (in JComponent )
|
Sets or checks on whether this component should
get the focus. Setting the setRequestFocusEnabled to false
typically prevents mouse clicks from giving the component the focus,
while still allowing keyboard navigation to give the component the focus.
This method applies only to components that
receive mouse events. For example, you can use this method
on a JButton , but not on a JPanel .
If you write a custom component it is up to you to honor this property.
This method is recommended over the setFocusable method and will allow
your program to work better for users employing
assistive technologies.
|
setFocusable(boolean) isFocusable() |
Sets or gets the focusable state of the component.
A component must be focusable in order to gain the focus.
When a component has been removed from the focus cycle with
setFocusable(false) , it can no longer be navigated
with the keyboard. The setRequestFocusEnabled method
is recommended so that your program can be run by users employing
assistive technologies.
|
requestFocusInWindow() | Requests that this component should get the focus.
The component's window must be the current focused window.
For this request to be granted a subclass of JComponent must be visible,
enabled, and focusable, and have an input map for this
request to be granted. It should not be
assumed that the component has the focus until it
fires a FOCUS_GAINED event.
This method is preferred to the requestFocus method,
which is platform-dependent.
|
setFocusTraversalKeys(int, Set) getFocusTraversalKeys(int) areFocusTraversalKeysSet(int) (in java.awt.Container )
|
Sets or gets the focus traversal keys for a particular
direction or determines whether any focus traversal keys have
been explicitly set on this container. If no focus traversal
keys have been set, they are inherited from an ancestor or
from the keyboard focus manager. Focus traversal keys
can be set for the following directions:
KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS ,
KeyboardFocusManager.BACKWARD_TRAVERSAL_KEYS
KeyboardFocusManager.UP_CYCLE_TRAVERSAL_KEYS , or
KeyboardFocusManager.DOWN_CYCLE_TRAVERSAL_KEYS .
If you set the UP_CYCLE_TRAVERSAL_KEYS or the
DOWN_CYCLE_TRAVERSAL_KEYS , you must also invoke
setImplicitDownCycleTraversal(false) on the focus traversal policy.
|
Creating and Using a Custom FocusTraversalPolicy
Class or Method | Purpose |
---|---|
LayoutFocusTraversalPolicy | The class that, by default, determines the focus traversal policy for Swing components. |
getComponentAfter(Container, Component) | Given the component that is passed as input, returns the component that should next have the focus. |
getComponentBefore(Container, Component) | Given the component that is passed as input, returns the component that should have the focus before this component. The method is used for backward tabbing. |
getDefaultComponent(Container) (in javax.swing.SortingFocusTraversalPolicy )
|
Returns the component that should have the default focus. |
getFirstComponent(Container) | Returns the first component in the traversal cycle. |
getInitialComponent(Container) | Returns the component that should receive the focus when a window is made visible for the first time. |
getLastComponent(Container) | Returns the last component in the traversal cycle. |
setFocusTraversalPolicy(FocusTraversalPolicy) getFocusTraversalPolicy(FocusTraversalPolicy) (in java.awt.Container )
|
Sets or gets the focus traversal policy or
determines if a policy has been set. Note that setting a focus
traversal policy on a container that is not the focus cycle
root may have no apparent effect.
A value of null means that a policy has
not been explicitly set. If no policy has been set,
a policy is inherited from the parent focus cycle root.
|
isFocusCycleRoot() setFocusCycleRoot(boolean) (in java.awt.Container )
|
Checks or sets whether a container is the root of a focus traversal cycle. |
isFocusTraversalPolicyProvider() setFocusTraversalPolicyProvider(boolean) (in java.awt.Container )
|
Checks or sets whether a container will be used to provide focus traversal policy. |
All of this API was introduced in JDK 1.3.
Class or Method | Purpose |
---|---|
InputVerifier | Abstract class that allows input validation via the focus mechanism. When an attempt is made to shift the focus from a component containing an input verifier, the focus is not relinquished until the verifier is satisfied. |
shouldYieldFocus(JComponent) (in InputVerifier )
|
When a component has an input verifier, this method is
called by the system to determine whether the focus can
leave this component. This method may cause side effects,
such as bringing up a dialog-box. If this method returns
false , the focus remains on the component passed in
to the method.
|
verify(JComponent) (in InputVerifier )
|
You need to override this method to check that
the component's input is valid. It should return
true if valid, otherwise return false .
This method should not cause any side effects,
such as bringing up a dialog-box. This method is
called by shouldYieldFocus .
|
setInputVerifier(inputVerifier) getInputVerifier() (in JComponent )
|
Sets or gets the input verifier assigned to the component. By default, components have no input verifier. |
setVerifyInputWhenFocusTarget(boolean) getVerifyInputWhenFocusTarget() (in JComponent )
|
Sets or gets whether the input verifier for the current focus owner
is called before this component requests the focus.
The default is true . This method should be set to false for
components, such as a Cancel button or a scroll
bar, that should receive the focus even if input is invalid.
|
KeyboardFocusManager Properties
This table defines the bound properties for
KeyboardFocusManager
. A listener can be registered for these properties by calling
addPropertyChangeListener
.
All of this API was introduced in JDK 1.4.
Property | Purpose |
---|---|
focusOwner | The component that currently receives key events. |
permanentFocusOwner | The component that most recently received a
permanent FOCUS_GAINED event.
Typically the same as focusOwner , unless
a temporary focus change is currently in effect. |
focusedWindow | The window that is or that contains the focus owner. |
activeWindow | The component must always be either a Frame or a
Dialog . The active window is either the
focused window, or the first frame or dialog-box that is an
owner of the focused window. |
defaultFocusTraversalPolicy | The default focus traversal policy, which can be
set by the setFocusTraversalPolicy method of the Container class. |
forwardDefaultFocusTraversalKeys | The set of default focus keys for a forward traversal. For multi-line text components, these keys default to Control-Tab. For all other components, these keys default to Tab and Control-Tab. |
backwardDefaultFocusTraversalKeys | The set of default focus keys for a backward traversal. For multi-line text components these keys default to Control-Shift-Tab. For all other components these keys default to Shift-Tab and Control-Shift-Tab. |
upCycleDefaultFocusTraversalKeys | The set of default focus keys for an up cycle.
These keys are null, by default, for Swing components.
If you set these keys on the KeyboardFocusManager ,
or if you set the downCycleFocusTraversalKeys on a focus
cycle root, you must also invoke the
setImplicitDownCycleTraversal(false) method on the focus traversal policy.
|
downCycleDefaultFocusTraversalKeys | The set of default focus keys for a down cycle.
These keys are null, by default, for Swing components.
If you set these keys on the KeyboardFocusManager ,
or if you set the upCycleFocusTraversalKeys on a focus
cycle root, you must also invoke the
setImplicitDownCycleTraversal(false) method on the focus traversal policy.
|
currentFocusCycleRoot | The container that is the current focus cycle root. |
Example | Where Described | Notes |
---|---|---|
FocusConceptsDemo
|
This section | Demonstrates basic default focus behavior. |
FocusTraversalDemo
|
This section | Demonstrates how to override the default focus order. |
TrackFocusDemo
|
This section | Demonstrates how to use a PropertyChangeListener
to track the focus owner. Also implements a custom focusable
component.
|
InputVerificationDemo
|
This section | Demonstrates how to implement an InputVerifier
to validate user input.
|
InputVerificationDialogDemo
|
This section | Demonstrates how to implement an InputVerifier
that puts up a dialog-box when user input is invalid.
|
FocusEventDemo | How to Write a Focus Listener | Reports all focus events that occur on several components to demonstrate the circumstances under which focus events are fired. |