Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/javax/swing/JComboBox/8057893/bug8057893.java
41153 views
1
/*
2
* Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation.
8
*
9
* This code is distributed in the hope that it will be useful, but WITHOUT
10
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12
* version 2 for more details (a copy is included in the LICENSE file that
13
* accompanied this code).
14
*
15
* You should have received a copy of the GNU General Public License version
16
* 2 along with this work; if not, write to the Free Software Foundation,
17
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18
*
19
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* questions.
22
*/
23
24
import java.awt.EventQueue;
25
import java.awt.Robot;
26
import java.awt.Toolkit;
27
import java.awt.event.ActionEvent;
28
import java.awt.event.ActionListener;
29
import java.awt.event.KeyEvent;
30
import javax.swing.JComboBox;
31
import javax.swing.JFrame;
32
import javax.swing.WindowConstants;
33
34
/**
35
* @test
36
* @key headful
37
* @bug 8057893
38
* @summary JComboBox actionListener never receives "comboBoxEdited"
39
* from getActionCommand
40
* @run main bug8057893
41
*/
42
public class bug8057893 {
43
44
private static volatile boolean isComboBoxEdited = false;
45
private static JFrame frame;
46
47
public static void main(String[] args) throws Exception {
48
Robot robot = new Robot();
49
robot.setAutoDelay(100);
50
51
EventQueue.invokeAndWait(() -> {
52
frame = new JFrame();
53
frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
54
JComboBox<String> comboBox = new JComboBox<>(new String[]{"one", "two"});
55
comboBox.setEditable(true);
56
comboBox.addActionListener(new ActionListener() {
57
58
@Override
59
public void actionPerformed(ActionEvent e) {
60
if ("comboBoxEdited".equals(e.getActionCommand())) {
61
isComboBoxEdited = true;
62
}
63
}
64
});
65
frame.add(comboBox);
66
frame.pack();
67
frame.setVisible(true);
68
frame.setLocationRelativeTo(null);
69
comboBox.requestFocusInWindow();
70
});
71
72
robot.waitForIdle();
73
robot.delay(1000);
74
75
robot.keyPress(KeyEvent.VK_A);
76
robot.keyRelease(KeyEvent.VK_A);
77
robot.keyPress(KeyEvent.VK_ENTER);
78
robot.keyRelease(KeyEvent.VK_ENTER);
79
robot.waitForIdle();
80
81
if (frame != null) EventQueue.invokeAndWait(() -> frame.dispose());
82
if(!isComboBoxEdited){
83
throw new RuntimeException("ComboBoxEdited event is not fired!");
84
}
85
}
86
}
87
88