-
Bug
-
Resolution: Not an Issue
-
P4
-
None
-
1.4.2
-
x86
-
windows_xp
FULL PRODUCT VERSION :
java version "1.4.2_06"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_06-b03)
Java HotSpot(TM) Client VM (build 1.4.2_06-b03, mixed mode)
ADDITIONAL OS VERSION INFORMATION :
Microsoft Windows XP [Version 5.1.2600]
A DESCRIPTION OF THE PROBLEM :
I have a menu item with the accelerator CTRL-X. When pressind this key comination while a tree node is being edited and its name is selected within the editor component the following actions occurr:
1. the string in the textfield will be cutted (and is now in the clipboard)
2. the menu item is triggered.
Case 1 is the expected and correct case, but case 2 is a bug, because the textfield has already handeled the key event (the menu item should not be triggered anymore).
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Start the class attached. Select a treenode and click again into this node so that editing starts. Then select some text and press the key combination 'CTRL-X'. Now you will see that the selected text will disappear and that some text is being printed to standard out
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
the string is cutted and the menu item is not triggered
ACTUAL -
the string is cutted and the menu item IS triggered
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
import javax.swing.*;
import javax.swing.tree.DefaultMutableTreeNode;
import java.awt.*;
import java.awt.event.ActionEvent;
public class JDC2 extends JFrame{
JDC2(String title){
super(title);
init();
setSize(200, 200);
}
protected void init(){
JMenuBar menuBar = new JMenuBar();
JMenu menu = new JMenu("Test");
menu.setMnemonic('T');
Action action = new AbstractAction("Test"){
public void actionPerformed(ActionEvent e){
System.out.println("Test is performed");
}
};
JMenuItem mi = new JMenuItem(action);
KeyStroke k = KeyStroke.getKeyStroke("control released X");
if(k != null){
mi.setAccelerator(k);
}
menu.add(mi);
menuBar.add(menu);
setJMenuBar(menuBar);
this.getContentPane().add(createTree());
}
public static void main(String [] args){
try{
UIManager.setLookAndFeel(new com.sun.java.swing.plaf.windows.WindowsLookAndFeel());
JFrame frame = new JDC2("Mnemonic Test");
Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
Dimension frameSize = frame.getSize();
frame.setLocation((screenSize.width - frameSize.width) / 2, (screenSize.height - frameSize.height) / 2);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}
catch(Exception ex){
ex.printStackTrace();
System.exit(0);
}
}
public JScrollPane createTree() {
DefaultMutableTreeNode top = new DefaultMutableTreeNode("Root");
top.add(new DefaultMutableTreeNode("Sub A"));
top.add(new DefaultMutableTreeNode("Sub B"));
top.add(new DefaultMutableTreeNode("Sub C"));
JTree tree = new JTree(top) {
public Insets getInsets() {
return new Insets(5,5,5,5);
}
};
tree.setEditable(true);
return new JScrollPane(tree);
}
---------- END SOURCE ----------
java version "1.4.2_06"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_06-b03)
Java HotSpot(TM) Client VM (build 1.4.2_06-b03, mixed mode)
ADDITIONAL OS VERSION INFORMATION :
Microsoft Windows XP [Version 5.1.2600]
A DESCRIPTION OF THE PROBLEM :
I have a menu item with the accelerator CTRL-X. When pressind this key comination while a tree node is being edited and its name is selected within the editor component the following actions occurr:
1. the string in the textfield will be cutted (and is now in the clipboard)
2. the menu item is triggered.
Case 1 is the expected and correct case, but case 2 is a bug, because the textfield has already handeled the key event (the menu item should not be triggered anymore).
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Start the class attached. Select a treenode and click again into this node so that editing starts. Then select some text and press the key combination 'CTRL-X'. Now you will see that the selected text will disappear and that some text is being printed to standard out
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
the string is cutted and the menu item is not triggered
ACTUAL -
the string is cutted and the menu item IS triggered
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
import javax.swing.*;
import javax.swing.tree.DefaultMutableTreeNode;
import java.awt.*;
import java.awt.event.ActionEvent;
public class JDC2 extends JFrame{
JDC2(String title){
super(title);
init();
setSize(200, 200);
}
protected void init(){
JMenuBar menuBar = new JMenuBar();
JMenu menu = new JMenu("Test");
menu.setMnemonic('T');
Action action = new AbstractAction("Test"){
public void actionPerformed(ActionEvent e){
System.out.println("Test is performed");
}
};
JMenuItem mi = new JMenuItem(action);
KeyStroke k = KeyStroke.getKeyStroke("control released X");
if(k != null){
mi.setAccelerator(k);
}
menu.add(mi);
menuBar.add(menu);
setJMenuBar(menuBar);
this.getContentPane().add(createTree());
}
public static void main(String [] args){
try{
UIManager.setLookAndFeel(new com.sun.java.swing.plaf.windows.WindowsLookAndFeel());
JFrame frame = new JDC2("Mnemonic Test");
Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
Dimension frameSize = frame.getSize();
frame.setLocation((screenSize.width - frameSize.width) / 2, (screenSize.height - frameSize.height) / 2);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}
catch(Exception ex){
ex.printStackTrace();
System.exit(0);
}
}
public JScrollPane createTree() {
DefaultMutableTreeNode top = new DefaultMutableTreeNode("Root");
top.add(new DefaultMutableTreeNode("Sub A"));
top.add(new DefaultMutableTreeNode("Sub B"));
top.add(new DefaultMutableTreeNode("Sub C"));
JTree tree = new JTree(top) {
public Insets getInsets() {
return new Insets(5,5,5,5);
}
};
tree.setEditable(true);
return new JScrollPane(tree);
}
---------- END SOURCE ----------