jdk/test/java/awt/ScrollPane/ScrollPanePreferredSize/ScrollPanePreferredSize.java
author serb
Tue, 12 Nov 2013 20:24:25 +0400
changeset 21596 0e3a39f29dbc
parent 13993 8b3fe3d8badb
child 23010 6dadb192ad81
permissions -rw-r--r--
8027696: Incorrect copyright header in the tests Reviewed-by: alanb, malenkov, mullan
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13993
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
     1
/*
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
     2
 * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
     4
 *
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
21596
0e3a39f29dbc 8027696: Incorrect copyright header in the tests
serb
parents: 13993
diff changeset
     7
 * published by the Free Software Foundation.
13993
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
     8
 *
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    13
 * accompanied this code).
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    14
 *
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    18
 *
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    21
 * questions.
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    22
 */
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    23
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    24
import java.awt.Dimension;
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    25
import java.awt.Frame;
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    26
import java.awt.ScrollPane;
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    27
import java.awt.Toolkit;
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    28
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    29
import sun.awt.SunToolkit;
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    30
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    31
/**
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    32
 * @test
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    33
 * @bug 7124213
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    34
 * @author Sergey Bylokhov
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    35
 */
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    36
public final class ScrollPanePreferredSize {
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    37
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    38
    public static void main(final String[] args) {
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    39
        final Dimension expected = new Dimension(300, 300);
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    40
        final Frame frame = new Frame();
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    41
        final ScrollPane sp = new ScrollPane();
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    42
        sp.setSize(expected);
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    43
        frame.add(sp);
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    44
        frame.pack();
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    45
        frame.setLocationRelativeTo(null);
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    46
        frame.setVisible(true);
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    47
        sleep();
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    48
        final Dimension size = frame.getSize();
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    49
        if (size.width < expected.width || size.height < expected.height) {
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    50
            throw new RuntimeException(
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    51
                    "Expected size: >= " + expected + ", actual size: " + size);
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    52
        }
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    53
        frame.dispose();
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    54
    }
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    55
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    56
    private static void sleep() {
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    57
        ((SunToolkit) Toolkit.getDefaultToolkit()).realSync();
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    58
        try {
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    59
            Thread.sleep(500L);
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    60
        } catch (InterruptedException ignored) {
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    61
        }
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    62
    }
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    63
}