-
Bug
-
Resolution: Duplicate
-
P2
-
None
-
6
-
x86
-
windows_xp
FULL PRODUCT VERSION :
1.6.0-b105
ADDITIONAL OS VERSION INFORMATION :
windows
A DESCRIPTION OF THE PROBLEM :
JTree KeyEvent.VK_RIGHT's "selectChild" action can't go throgh all treenodes on JDK1.6.0
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Just new JTree() , and select the root node, then press KeyEvent.VK_RIGHT keyboard, in JDK1.4 and JDK1.5,you can go throgh all treenodes by the method, but in JDK1.6.0 you can only go to the first leaf node.
In JDK1.4 or JDK1.5 when i press KeyEvent.VK_RIGHT from the root node can go through
all tree nodes, but in JDK1.6 stop at:
JTree--
|
--Colors
|
--blue // stop here
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
import java.awt.BorderLayout;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JTree;
public class T {
public static void main(String[] args) throws Exception {
JFrame frame = new JFrame();
frame.getContentPane().setLayout(new BorderLayout());
frame.getContentPane().add(new JScrollPane(new JTree()),BorderLayout.CENTER);
frame.setSize(800,600);
frame.setVisible(true);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
}
---------- END SOURCE ----------
Release Regression From : 5.0u9
The above release value was the last known release where this
bug was not reproducible. Since then there has been a regression.
1.6.0-b105
ADDITIONAL OS VERSION INFORMATION :
windows
A DESCRIPTION OF THE PROBLEM :
JTree KeyEvent.VK_RIGHT's "selectChild" action can't go throgh all treenodes on JDK1.6.0
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Just new JTree() , and select the root node, then press KeyEvent.VK_RIGHT keyboard, in JDK1.4 and JDK1.5,you can go throgh all treenodes by the method, but in JDK1.6.0 you can only go to the first leaf node.
In JDK1.4 or JDK1.5 when i press KeyEvent.VK_RIGHT from the root node can go through
all tree nodes, but in JDK1.6 stop at:
JTree--
|
--Colors
|
--blue // stop here
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
import java.awt.BorderLayout;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JTree;
public class T {
public static void main(String[] args) throws Exception {
JFrame frame = new JFrame();
frame.getContentPane().setLayout(new BorderLayout());
frame.getContentPane().add(new JScrollPane(new JTree()),BorderLayout.CENTER);
frame.setSize(800,600);
frame.setVisible(true);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
}
---------- END SOURCE ----------
Release Regression From : 5.0u9
The above release value was the last known release where this
bug was not reproducible. Since then there has been a regression.
- duplicates
-
JDK-5096681 PIT: Bug#4927934 should be fixed specific to the LAF.
-
- Closed
-
- relates to
-
JDK-4927934 JTree traversal is unlike Native windows tree traversal
-
- Closed
-