Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/javax/swing/JTabbedPane/7161568/bug7161568.java
41155 views
1
/*
2
* Copyright (c) 2013, 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
import java.awt.*;
24
import javax.swing.*;
25
import java.awt.event.*;
26
27
/**
28
* @test
29
* @key headful
30
* @bug 7161568
31
* @author Alexander Scherbatiy
32
* @summary Tests that navigating tabs in the JTAbbedPane does not throw NPE
33
* @run main bug7161568
34
*/
35
public class bug7161568 {
36
37
private static final int N = 50;
38
private static JTabbedPane tabbedPane;
39
private static JFrame frame;
40
41
public static void main(String[] args) throws Exception {
42
UIManager.put("TabbedPane.selectionFollowsFocus", Boolean.FALSE);
43
44
try {
45
Robot robot = new Robot();
46
robot.setAutoDelay(50);
47
48
SwingUtilities.invokeAndWait(new Runnable() {
49
50
@Override
51
public void run() {
52
createAndShowUI();
53
}
54
});
55
56
robot.waitForIdle();
57
58
SwingUtilities.invokeAndWait(new Runnable() {
59
60
@Override
61
public void run() {
62
tabbedPane.requestFocus();
63
}
64
});
65
66
robot.waitForIdle();
67
68
for (int i = 0; i < N; i++) {
69
robot.keyPress(KeyEvent.VK_LEFT);
70
robot.keyRelease(KeyEvent.VK_LEFT);
71
robot.waitForIdle();
72
}
73
} finally {
74
if (frame != null) SwingUtilities.invokeAndWait(() -> frame.dispose());
75
}
76
}
77
78
static void createAndShowUI() {
79
frame = new JFrame("Test");
80
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
81
frame.setSize(100, 100);
82
83
tabbedPane = new JTabbedPane();
84
85
for (int i = 0; i < N; i++) {
86
tabbedPane.addTab("Tab: " + i, new JLabel("Test"));
87
}
88
89
tabbedPane.setSelectedIndex(0);
90
91
frame.getContentPane().add(tabbedPane);
92
frame.setVisible(true);
93
}
94
}
95
96