< prev index next >

test/javax/swing/JSplitPane/4816114/bug4816114.java

Print this page
rev 14989 : 8160974: [TESTBUG] Mark more headful tests with @key headful.


   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 
  34 
  35 public class bug4816114 {
  36 
  37     JFrame fr;
  38     JSplitPane splitPane;
  39 
  40     boolean[] resized = new boolean[] { false, false, false,
  41                                         false, false, false };
  42     static int step = 0;
  43     boolean h_passed = false;
  44     boolean v_passed = false;
  45 
  46     static bug4816114 test = new bug4816114();
  47 
  48     public static void main(String[] args) throws InterruptedException, InvocationTargetException, AWTException {




   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 
  37 
  38 public class bug4816114 {
  39 
  40     JFrame fr;
  41     JSplitPane splitPane;
  42 
  43     boolean[] resized = new boolean[] { false, false, false,
  44                                         false, false, false };
  45     static int step = 0;
  46     boolean h_passed = false;
  47     boolean v_passed = false;
  48 
  49     static bug4816114 test = new bug4816114();
  50 
  51     public static void main(String[] args) throws InterruptedException, InvocationTargetException, AWTException {


< prev index next >