< prev index next >

test/javax/swing/GroupLayout/8013566/bug8013566.java

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


   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 8013566
  26    @summary Failure of GroupLayout in combination of addPreferredGap and addGroup's
  27    last row
  28    @author Semyon Sadetsky
  29 */


  30 
  31 import javax.swing.*;
  32 
  33 public class bug8013566 {
  34 
  35     public static void main(String[] args) throws Exception {
  36         SwingUtilities.invokeAndWait(new Runnable() {
  37             public void run() {
  38                 final JFrame frame = new JFrame();
  39                 try {
  40                     frame.setUndecorated(true);
  41                     frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  42                     test(frame);
  43 
  44 
  45                 } finally {
  46                     frame.dispose();
  47                 }
  48             }
  49         });




   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 8013566
  28  * @summary Failure of GroupLayout in combination of addPreferredGap and addGroup's
  29  * last row
  30  * @author Semyon Sadetsky
  31  */
  32 
  33 import javax.swing.*;
  34 
  35 public class bug8013566 {
  36 
  37     public static void main(String[] args) throws Exception {
  38         SwingUtilities.invokeAndWait(new Runnable() {
  39             public void run() {
  40                 final JFrame frame = new JFrame();
  41                 try {
  42                     frame.setUndecorated(true);
  43                     frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  44                     test(frame);
  45 
  46 
  47                 } finally {
  48                     frame.dispose();
  49                 }
  50             }
  51         });


< prev index next >