jdk/test/javax/swing/border/Test4120351.java
author malenkov
Thu, 26 Jun 2008 15:11:04 +0400
changeset 1274 5561e281cda6
child 5506 202f599c92aa
permissions -rw-r--r--
6718964: Swing border tests should be open source Reviewed-by: peterz
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1274
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
     1
/*
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
     2
 * Copyright 1999-2008 Sun Microsystems, Inc.  All Rights Reserved.
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
     4
 *
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
     7
 * published by the Free Software Foundation.
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
     8
 *
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    13
 * accompanied this code).
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    14
 *
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    18
 *
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    21
 * have any questions.
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    22
 */
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    23
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    24
/*
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    25
 * @test
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    26
 * @bug 4120351
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    27
 * @summary Tests that the methods createEtchedBorder(int type) and
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    28
 *          createEtchedBorder(int type, Color highlight, Color shadows) are added
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    29
 * @author Andrey Pikalev
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    30
 */
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    31
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    32
import java.awt.Color;
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    33
import javax.swing.BorderFactory;
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    34
import javax.swing.border.EtchedBorder;
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    35
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    36
public class Test4120351 {
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    37
    public static void main(String[] args) {
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    38
        BorderFactory.createEtchedBorder(EtchedBorder.RAISED);
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    39
        BorderFactory.createEtchedBorder(EtchedBorder.LOWERED);
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    40
        BorderFactory.createEtchedBorder(EtchedBorder.RAISED, Color.BLACK, Color.WHITE);
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    41
        BorderFactory.createEtchedBorder(EtchedBorder.LOWERED, Color.WHITE, Color.BLACK);
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    42
    }
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    43
}