Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/javax/swing/JList/GetSelectedValueTest.java
41152 views
1
/*
2
* Copyright (c) 2018, 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
* @test
25
* @key headful
26
* @bug 7108280
27
* @summary Verifies that getSelectedValue works fine without crash when
28
* the setSelectionInterval was called with indices outside the
29
* range of data present in DataModel
30
* @run main GetSelectedValueTest
31
*/
32
33
import javax.swing.SwingUtilities;
34
import javax.swing.DefaultListModel;
35
import javax.swing.JList;
36
import javax.swing.ListSelectionModel;
37
import java.util.Objects;
38
39
public class GetSelectedValueTest {
40
public static void main(String[] args) throws Exception {
41
42
SwingUtilities.invokeAndWait(new Runnable() {
43
public void run() {
44
// Create a JList with 2 elements
45
DefaultListModel dlm = new DefaultListModel();
46
JList list = new JList<String>(dlm);
47
list.setSelectionMode(
48
ListSelectionModel.MULTIPLE_INTERVAL_SELECTION);
49
dlm.addElement("1");
50
dlm.addElement("2");
51
52
// Set the selection interval from 0-2 (3 elements instead
53
// of 2). The getSelectedValue should return the first
54
// selected element
55
list.setSelectionInterval(0, 2);
56
checkSelectedIndex(list, "1");
57
58
//here the smallest selection index is bigger than number of
59
// elements in list. This should return null.
60
list.setSelectionInterval(4, 5);
61
checkSelectedIndex(list,null);
62
}
63
});
64
}
65
66
static void checkSelectedIndex(JList list, Object value)
67
throws RuntimeException {
68
Object selectedObject = list.getSelectedValue();
69
if (!Objects.equals(value, selectedObject)) {
70
System.out.println("Expected: " + value);
71
System.out.println("Actual: " + selectedObject);
72
throw new RuntimeException("Wrong selection");
73
}
74
}
75
}
76
77