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 /* @test
24 @bug 4816114
25 @summary REGRESSION: Regression in divider location behavior when JSplitPane is resized
26 @author Andrey Pikalev
27 @run main bug4816114
28 */
29
30 import javax.swing.*;
31 import java.awt.*;
32 import java.lang.reflect.*;
33 import sun.awt.SunToolkit;
34
35
36 public class bug4816114 {
37
38 JFrame fr;
39 JSplitPane splitPane;
40
41 boolean[] resized = new boolean[] { false, false, false,
42 false, false, false };
43 static int step = 0;
44 boolean h_passed = false;
45 boolean v_passed = false;
46
47 static bug4816114 test = new bug4816114();
48
|
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 /*
25 * @test
26 * @key headful
27 * @bug 4816114
28 * @summary REGRESSION: Regression in divider location behavior when JSplitPane is resized
29 * @author Andrey Pikalev
30 * @run main bug4816114
31 */
32
33 import javax.swing.*;
34 import java.awt.*;
35 import java.lang.reflect.*;
36 import sun.awt.SunToolkit;
37
38
39 public class bug4816114 {
40
41 JFrame fr;
42 JSplitPane splitPane;
43
44 boolean[] resized = new boolean[] { false, false, false,
45 false, false, false };
46 static int step = 0;
47 boolean h_passed = false;
48 boolean v_passed = false;
49
50 static bug4816114 test = new bug4816114();
51
|