Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/javax/swing/JTabbedPane/4209065/bug4209065.java
41154 views
1
/*
2
* Copyright (c) 1999, 2015, 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.lang.reflect.InvocationTargetException;
26
27
import javax.swing.JApplet;
28
import javax.swing.JLabel;
29
import javax.swing.JTabbedPane;
30
31
/**
32
* @test
33
* @bug 4209065
34
* @author Georges Saab
35
* @run applet/manual=yesno bug4209065.html
36
*/
37
public final class bug4209065 extends JApplet {
38
39
@Override
40
public void init() {
41
try {
42
EventQueue.invokeAndWait(this::createTabbedPane);
43
} catch (InterruptedException | InvocationTargetException e) {
44
throw new RuntimeException(e);
45
}
46
}
47
48
private void createTabbedPane() {
49
JTabbedPane tp = new JTabbedPane();
50
getContentPane().add(tp);
51
String text = "<html><center>If the style of the text on the tabs matches"
52
+ "<br>the descriptions, press <em><b>PASS</b></em></center></html>";
53
tp.addTab("<html><center><font size=+3>big</font></center></html>", new JLabel(text));
54
tp.addTab("<html><center><font color=red>red</font></center></html>", new JLabel(text));
55
tp.addTab("<html><center><em><b>Bold Italic!</b></em></center></html>", new JLabel(text));
56
}
57
}
58
59