jdk/test/javax/swing/JColorChooser/Test4222508.java
author hseigel
Wed, 01 Mar 2017 08:00:02 -0500
changeset 46194 5596e6f63072
parent 5506 202f599c92aa
permissions -rw-r--r--
8172307: Remove ununsed JVM API JVM_GetModuleByPackageName() Summary: Remove get_module_by_package_name() etc., and unneeded test. Reviewed-by: sspitsyn, gtriantafill
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1849
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
     1
/*
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1849
diff changeset
     2
 * Copyright (c) 2008, Oracle and/or its affiliates. All rights reserved.
1849
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
     4
 *
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
     7
 * published by the Free Software Foundation.
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
     8
 *
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    13
 * accompanied this code).
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    14
 *
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    18
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1849
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1849
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1849
diff changeset
    21
 * questions.
1849
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    22
 */
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    23
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    24
/*
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    25
 * @test
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    26
 * @bug 4222508
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    27
 * @summary Tests the color chooser disabling
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    28
 * @author Sergey Malenkov
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    29
 * @run applet/manual=yesno Test4222508.html
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    30
 */
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    31
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    32
import java.awt.BorderLayout;
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    33
import java.awt.event.ItemEvent;
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    34
import java.awt.event.ItemListener;
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    35
import javax.swing.JApplet;
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    36
import javax.swing.JCheckBox;
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    37
import javax.swing.JColorChooser;
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    38
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    39
public final class Test4222508 extends JApplet implements ItemListener {
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    40
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    41
    private JCheckBox checkbox;
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    42
    private JColorChooser chooser;
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    43
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    44
    @Override
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    45
    public void init() {
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    46
        this.chooser = new JColorChooser();
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    47
        this.checkbox = new JCheckBox("Enable the color chooser below", true);
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    48
        this.checkbox.addItemListener(this);
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    49
        add(BorderLayout.NORTH, this.checkbox);
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    50
        add(BorderLayout.CENTER, this.chooser);
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    51
    }
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    52
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    53
    public void itemStateChanged(ItemEvent event) {
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    54
        this.chooser.setEnabled(this.checkbox.isSelected());
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    55
    }
b7b930157ae5 4222508: JColorChooser ignores setEnabled() function call
malenkov
parents:
diff changeset
    56
}