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 /* @test
25 @bug 6596966
26 @summary Some JFileChooser mnemonics do not work with sticky keys
27 @library ../../regtesthelpers
28 @build Util
29 @run main bug6596966
30 @author Pavel Porvatov
31 */
32
33 import java.awt.*;
34 import java.awt.event.KeyEvent;
35 import java.util.ArrayList;
36 import javax.swing.*;
37 import sun.awt.SunToolkit;
38
39 public class bug6596966 {
40 private static JFrame frame;
41
42 private static JLabel label;
43 private static JButton button;
44 private static JComboBox comboBox;
45
46 public static void main(String[] args) throws Exception {
47 Robot robot = new Robot();
48 SunToolkit toolkit = (SunToolkit) SunToolkit.getDefaultToolkit();
49
50 SwingUtilities.invokeAndWait(new Runnable() {
51 public void run() {
|
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 /*
25 * @test
26 * @key headful
27 * @bug 6596966
28 * @summary Some JFileChooser mnemonics do not work with sticky keys
29 * @library ../../regtesthelpers
30 * @library ../../../../lib/testlibrary
31 * @build Util jdk.testlibrary.OSInfo
32 * @run main bug6596966
33 * @author Pavel Porvatov
34 */
35
36 import java.awt.*;
37 import java.awt.event.KeyEvent;
38 import java.util.ArrayList;
39 import javax.swing.*;
40 import sun.awt.SunToolkit;
41
42 public class bug6596966 {
43 private static JFrame frame;
44
45 private static JLabel label;
46 private static JButton button;
47 private static JComboBox comboBox;
48
49 public static void main(String[] args) throws Exception {
50 Robot robot = new Robot();
51 SunToolkit toolkit = (SunToolkit) SunToolkit.getDefaultToolkit();
52
53 SwingUtilities.invokeAndWait(new Runnable() {
54 public void run() {
|