jdk/src/share/classes/javax/swing/JCheckBoxMenuItem.java
author malenkov
Wed, 07 May 2008 23:20:32 +0400
changeset 466 6acd5ec503a8
parent 2 90ce3da70b43
child 5506 202f599c92aa
permissions -rw-r--r--
4935607: RFE: LTP: Should be possible to set the TRANSIENT attribute of propertiies to FALSE Summary: Add the Transient annotation and support it (JSR-273) Reviewed-by: peterz, loneid
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1997-2006 Sun Microsystems, Inc.  All Rights Reserved.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * by Sun in the LICENSE file that accompanied this code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 * have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
package javax.swing;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
import java.util.EventListener;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.awt.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.awt.event.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.awt.image.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.io.ObjectOutputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.io.ObjectInputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import java.io.IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import javax.swing.plaf.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import javax.accessibility.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * A menu item that can be selected or deselected. If selected, the menu
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * item typically appears with a checkmark next to it. If unselected or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * deselected, the menu item appears without a checkmark. Like a regular
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * menu item, a check box menu item can have either text or a graphic
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * icon associated with it, or both.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * Either <code>isSelected</code>/<code>setSelected</code> or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * <code>getState</code>/<code>setState</code> can be used
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * to determine/specify the menu item's selection state. The
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * preferred methods are <code>isSelected</code> and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * <code>setSelected</code>, which work for all menus and buttons.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * The <code>getState</code> and <code>setState</code> methods exist for
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * compatibility with other component sets.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * Menu items can be configured, and to some degree controlled, by
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * <code><a href="Action.html">Action</a></code>s.  Using an
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * <code>Action</code> with a menu item has many benefits beyond directly
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * configuring a menu item.  Refer to <a href="Action.html#buttonActions">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * Swing Components Supporting <code>Action</code></a> for more
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * details, and you can find more information in <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * href="http://java.sun.com/docs/books/tutorial/uiswing/misc/action.html">How
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * to Use Actions</a>, a section in <em>The Java Tutorial</em>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * For further information and examples of using check box menu items,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * see <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 href="http://java.sun.com/docs/books/tutorial/uiswing/components/menu.html">How to Use Menus</a>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 * a section in <em>The Java Tutorial.</em>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 * <strong>Warning:</strong> Swing is not thread safe. For more
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 * information see <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 * href="package-summary.html#threading">Swing's Threading
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 * Policy</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 * <strong>Warning:</strong>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 * Serialized objects of this class will not be compatible with
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 * future Swing releases. The current serialization support is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 * appropriate for short term storage or RMI between applications running
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 * the same version of Swing.  As of 1.4, support for long term storage
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 * of all JavaBeans<sup><font size="-2">TM</font></sup>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 * has been added to the <code>java.beans</code> package.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 * Please see {@link java.beans.XMLEncoder}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 * @beaninfo
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 *   attribute: isContainer false
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 * description: A menu item which can be selected or deselected.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 * @author Georges Saab
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 * @author David Karlton
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
public class JCheckBoxMenuItem extends JMenuItem implements SwingConstants,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        Accessible
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
     * @see #getUIClassID
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     * @see #readObject
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
    private static final String uiClassID = "CheckBoxMenuItemUI";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     * Creates an initially unselected check box menu item with no set text or icon.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    public JCheckBoxMenuItem() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
        this(null, null, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     * Creates an initially unselected check box menu item with an icon.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     * @param icon the icon of the CheckBoxMenuItem.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    public JCheckBoxMenuItem(Icon icon) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        this(null, icon, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     * Creates an initially unselected check box menu item with text.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * @param text the text of the CheckBoxMenuItem
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
    public JCheckBoxMenuItem(String text) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
        this(text, null, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     * Creates a menu item whose properties are taken from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     * Action supplied.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     * @since 1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
    public JCheckBoxMenuItem(Action a) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
        this();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
        setAction(a);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     * Creates an initially unselected check box menu item with the specified text and icon.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     * @param text the text of the CheckBoxMenuItem
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     * @param icon the icon of the CheckBoxMenuItem
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
    public JCheckBoxMenuItem(String text, Icon icon) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        this(text, icon, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     * Creates a check box menu item with the specified text and selection state.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     * @param text the text of the check box menu item.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     * @param b the selected state of the check box menu item
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    public JCheckBoxMenuItem(String text, boolean b) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
        this(text, null, b);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     * Creates a check box menu item with the specified text, icon, and selection state.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * @param text the text of the check box menu item
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * @param icon the icon of the check box menu item
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     * @param b the selected state of the check box menu item
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
    public JCheckBoxMenuItem(String text, Icon icon, boolean b) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
        super(text, icon);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        setModel(new JToggleButton.ToggleButtonModel());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
        setSelected(b);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
        setFocusable(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     * Returns the name of the L&F class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     * that renders this component.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     * @return "CheckBoxMenuItemUI"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     * @see JComponent#getUIClassID
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     * @see UIDefaults#getUI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    public String getUIClassID() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
        return uiClassID;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
     /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
      * Returns the selected-state of the item. This method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
      * exists for AWT compatibility only.  New code should
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
      * use isSelected() instead.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
      *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
      * @return true  if the item is selected
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
      */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
    public boolean getState() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
        return isSelected();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     * Sets the selected-state of the item. This method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     * exists for AWT compatibility only.  New code should
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     * use setSelected() instead.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     * @param b  a boolean value indicating the item's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     *           selected-state, where true=selected
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     * @beaninfo
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     * description: The selection state of the check box menu item
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     *      hidden: true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
    public synchronized void setState(boolean b) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
        setSelected(b);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     * Returns an array (length 1) containing the check box menu item
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     * label or null if the check box is not selected.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     * @return an array containing one Object -- the text of the menu item
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     *         -- if the item is selected; otherwise null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
    public Object[] getSelectedObjects() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
        if (isSelected() == false)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
        Object[] selectedObjects = new Object[1];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
        selectedObjects[0] = getText();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
        return selectedObjects;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     * See readObject() and writeObject() in JComponent for more
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     * information about serialization in Swing.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
    private void writeObject(ObjectOutputStream s) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
        s.defaultWriteObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
        if (getUIClassID().equals(uiClassID)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
            byte count = JComponent.getWriteObjCounter(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
            JComponent.setWriteObjCounter(this, --count);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
            if (count == 0 && ui != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
                ui.installUI(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
     * Returns a string representation of this JCheckBoxMenuItem. This method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
     * is intended to be used only for debugging purposes, and the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
     * content and format of the returned string may vary between
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
     * implementations. The returned string may be empty but may not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
     * be <code>null</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
     * @return  a string representation of this JCheckBoxMenuItem.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
    protected String paramString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
        return super.paramString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
     * Overriden to return true, JCheckBoxMenuItem supports
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     * the selected state.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
    boolean shouldUpdateSelectedStateFromAction() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
/////////////////
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
// Accessibility support
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
////////////////
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
     * Gets the AccessibleContext associated with this JCheckBoxMenuItem.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
     * For JCheckBoxMenuItems, the AccessibleContext takes the form of an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
     * AccessibleJCheckBoxMenuItem.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
     * A new AccessibleJCheckBoxMenuItem instance is created if necessary.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
     * @return an AccessibleJCheckBoxMenuItem that serves as the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
     *         AccessibleContext of this AccessibleJCheckBoxMenuItem
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
    public AccessibleContext getAccessibleContext() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
        if (accessibleContext == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
            accessibleContext = new AccessibleJCheckBoxMenuItem();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
        return accessibleContext;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
     * This class implements accessibility support for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
     * <code>JCheckBoxMenuItem</code> class.  It provides an implementation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
     * of the Java Accessibility API appropriate to checkbox menu item
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
     * user-interface elements.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
     * <strong>Warning:</strong>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
     * Serialized objects of this class will not be compatible with
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
     * future Swing releases. The current serialization support is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
     * appropriate for short term storage or RMI between applications running
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
     * the same version of Swing.  As of 1.4, support for long term storage
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
     * of all JavaBeans<sup><font size="-2">TM</font></sup>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
     * has been added to the <code>java.beans</code> package.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
     * Please see {@link java.beans.XMLEncoder}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
    protected class AccessibleJCheckBoxMenuItem extends AccessibleJMenuItem {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
         * Get the role of this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
         * @return an instance of AccessibleRole describing the role of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
         * object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
        public AccessibleRole getAccessibleRole() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
            return AccessibleRole.CHECK_BOX;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
    } // inner class AccessibleJCheckBoxMenuItem
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
}