-
Bug
-
Resolution: Not an Issue
-
P3
-
None
-
7
-
x86
-
windows_xp
This is reproducible with jdk7 b27 PIT build on Windows XP Professional. Not reproducible with 6u10 b23.
In the below test, in addition to a button, I've a panel which is the focus traversal policy provider with ContainerOrderFocusTraversalPolicy as the focus traversal policy. Initially, the button has focus. On pressing tab, the panel gains focus, but focus does not reach back the button on pressing tab again.
import java.awt.*;
public class FocusTraversalTest {
public static void main(String[] args) {
Frame f = new Frame();
f.setSize(300, 300);
f.setLayout(new FlowLayout());
Button b = new Button("North");
f.add(b, BorderLayout.NORTH);
Panel p = new Panel();
p.setFocusTraversalPolicyProvider(true);
p.setFocusTraversalPolicy(new ContainerOrderFocusTraversalPolicy());
p.add(new Button("B1"));
p.add(new Button("B2"));
f.add(p);
f.setVisible(true);
}
}
In the below test, in addition to a button, I've a panel which is the focus traversal policy provider with ContainerOrderFocusTraversalPolicy as the focus traversal policy. Initially, the button has focus. On pressing tab, the panel gains focus, but focus does not reach back the button on pressing tab again.
import java.awt.*;
public class FocusTraversalTest {
public static void main(String[] args) {
Frame f = new Frame();
f.setSize(300, 300);
f.setLayout(new FlowLayout());
Button b = new Button("North");
f.add(b, BorderLayout.NORTH);
Panel p = new Panel();
p.setFocusTraversalPolicyProvider(true);
p.setFocusTraversalPolicy(new ContainerOrderFocusTraversalPolicy());
p.add(new Button("B1"));
p.add(new Button("B2"));
f.add(p);
f.setVisible(true);
}
}
- relates to
-
JDK-6463545 focus spec should be corrected for Focus Cycle Root and Focus Traversal Policy Provider
-
- Closed
-
-
JDK-6794154 ContainerOrderFocusTraversalPolicy set for the Container does not work as expected on 1.7.0 build 42
-
- Closed
-