Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/javax/swing/Headless/HeadlessJScrollPane.java
41149 views
1
/*
2
* Copyright (c) 2007, 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 javax.swing.*;
25
import java.awt.*;
26
import java.util.Locale;
27
28
/*
29
* @test
30
* @summary Check that JScrollPane constructor and methods do not throw unexpected
31
* exceptions in headless mode
32
* @run main/othervm -Djava.awt.headless=true HeadlessJScrollPane
33
*/
34
35
public class HeadlessJScrollPane {
36
public static void main(String args[]) {
37
JScrollPane sp = new JScrollPane();
38
sp.getAccessibleContext();
39
sp.isFocusTraversable();
40
sp.setEnabled(false);
41
sp.setEnabled(true);
42
sp.requestFocus();
43
sp.requestFocusInWindow();
44
sp.getPreferredSize();
45
sp.getMaximumSize();
46
sp.getMinimumSize();
47
sp.contains(1, 2);
48
Component c1 = sp.add(new Component(){});
49
Component c2 = sp.add(new Component(){});
50
Component c3 = sp.add(new Component(){});
51
Insets ins = sp.getInsets();
52
sp.getAlignmentY();
53
sp.getAlignmentX();
54
sp.getGraphics();
55
sp.setVisible(false);
56
sp.setVisible(true);
57
sp.setForeground(Color.red);
58
sp.setBackground(Color.red);
59
for (String font : Toolkit.getDefaultToolkit().getFontList()) {
60
for (int j = 8; j < 17; j++) {
61
Font f1 = new Font(font, Font.PLAIN, j);
62
Font f2 = new Font(font, Font.BOLD, j);
63
Font f3 = new Font(font, Font.ITALIC, j);
64
Font f4 = new Font(font, Font.BOLD | Font.ITALIC, j);
65
66
sp.setFont(f1);
67
sp.setFont(f2);
68
sp.setFont(f3);
69
sp.setFont(f4);
70
71
sp.getFontMetrics(f1);
72
sp.getFontMetrics(f2);
73
sp.getFontMetrics(f3);
74
sp.getFontMetrics(f4);
75
}
76
}
77
sp.enable();
78
sp.disable();
79
sp.reshape(10, 10, 10, 10);
80
sp.getBounds(new Rectangle(1, 1, 1, 1));
81
sp.getSize(new Dimension(1, 2));
82
sp.getLocation(new Point(1, 2));
83
sp.getX();
84
sp.getY();
85
sp.getWidth();
86
sp.getHeight();
87
sp.isOpaque();
88
sp.isValidateRoot();
89
sp.isOptimizedDrawingEnabled();
90
sp.isDoubleBuffered();
91
sp.getComponentCount();
92
sp.countComponents();
93
sp.getComponent(1);
94
sp.getComponent(2);
95
Component[] cs = sp.getComponents();
96
sp.getLayout();
97
sp.setLayout(new ScrollPaneLayout());
98
sp.doLayout();
99
sp.layout();
100
sp.invalidate();
101
sp.validate();
102
sp.remove(0);
103
sp.remove(c2);
104
sp.removeAll();
105
sp.preferredSize();
106
sp.minimumSize();
107
sp.getComponentAt(1, 2);
108
sp.locate(1, 2);
109
sp.getComponentAt(new Point(1, 2));
110
sp.isFocusCycleRoot(new Container());
111
sp.transferFocusBackward();
112
sp.setName("goober");
113
sp.getName();
114
sp.getParent();
115
sp.getGraphicsConfiguration();
116
sp.getTreeLock();
117
sp.getToolkit();
118
sp.isValid();
119
sp.isDisplayable();
120
sp.isVisible();
121
sp.isShowing();
122
sp.isEnabled();
123
sp.enable(false);
124
sp.enable(true);
125
sp.enableInputMethods(false);
126
sp.enableInputMethods(true);
127
sp.show();
128
sp.show(false);
129
sp.show(true);
130
sp.hide();
131
sp.getForeground();
132
sp.isForegroundSet();
133
sp.getBackground();
134
sp.isBackgroundSet();
135
sp.getFont();
136
sp.isFontSet();
137
Container c = new Container();
138
c.add(sp);
139
sp.getLocale();
140
for (Locale locale : Locale.getAvailableLocales())
141
sp.setLocale(locale);
142
143
sp.getColorModel();
144
sp.getLocation();
145
146
boolean exceptions = false;
147
try {
148
sp.getLocationOnScreen();
149
} catch (IllegalComponentStateException e) {
150
exceptions = true;
151
}
152
if (!exceptions)
153
throw new RuntimeException("IllegalComponentStateException did not occur when expected");
154
155
sp.location();
156
sp.setLocation(1, 2);
157
sp.move(1, 2);
158
sp.setLocation(new Point(1, 2));
159
sp.getSize();
160
sp.size();
161
sp.setSize(1, 32);
162
sp.resize(1, 32);
163
sp.setSize(new Dimension(1, 32));
164
sp.resize(new Dimension(1, 32));
165
sp.getBounds();
166
sp.bounds();
167
sp.setBounds(10, 10, 10, 10);
168
sp.setBounds(new Rectangle(10, 10, 10, 10));
169
sp.isLightweight();
170
sp.setCursor(new Cursor(Cursor.CROSSHAIR_CURSOR));
171
sp.getCursor();
172
sp.isCursorSet();
173
sp.inside(1, 2);
174
sp.contains(new Point(1, 2));
175
sp.isFocusable();
176
sp.setFocusable(true);
177
sp.setFocusable(false);
178
sp.transferFocus();
179
sp.getFocusCycleRootAncestor();
180
sp.nextFocus();
181
sp.transferFocusUpCycle();
182
sp.hasFocus();
183
sp.isFocusOwner();
184
sp.toString();
185
sp.setComponentOrientation(ComponentOrientation.LEFT_TO_RIGHT);
186
sp.setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT);
187
sp.setComponentOrientation(ComponentOrientation.UNKNOWN);
188
sp.getComponentOrientation();
189
}
190
}
191
192