Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/javax/swing/JSlider/6278700/bug6278700.java
41153 views
1
/*
2
* Copyright (c) 2008, 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
* @bug 6278700
26
* @summary JSlider created with BoundedRangeModel fires twice when changed
27
* @author Pavel Porvatov
28
@run main bug6278700
29
*/
30
31
import javax.swing.*;
32
import javax.swing.event.ChangeEvent;
33
import javax.swing.event.ChangeListener;
34
35
public class bug6278700 {
36
private int changeCount;
37
38
private final ChangeListener listener = new ChangeListener() {
39
public void stateChanged(ChangeEvent e) {
40
changeCount++;
41
}
42
};
43
44
public static void main(String[] args) {
45
new bug6278700();
46
}
47
48
public bug6278700() {
49
SwingUtilities.invokeLater(new Runnable() {
50
public void run() {
51
JSlider slider = new JSlider(new DefaultBoundedRangeModel(5, 0, 0, 10));
52
53
slider.addChangeListener(listener);
54
slider.setValue(0);
55
56
if (changeCount != 1) {
57
throw new RuntimeException("Incorrect stateChanged count: " + Integer.toString(changeCount));
58
}
59
60
changeCount = 0;
61
62
slider = new JSlider();
63
64
slider.addChangeListener(listener);
65
slider.setValue(0);
66
67
if (changeCount != 1) {
68
throw new RuntimeException("Incorrect stateChanged count: " + Integer.toString(changeCount));
69
}
70
}
71
});
72
}
73
}
74
75