home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-03-20 | 5.4 KB | 179 lines |
- /*
- * @(#)JButton.java 1.56 98/02/12
- *
- * Copyright (c) 1997 Sun Microsystems, Inc. All Rights Reserved.
- *
- * This software is the confidential and proprietary information of Sun
- * Microsystems, Inc. ("Confidential Information"). You shall not
- * disclose such Confidential Information and shall use it only in
- * accordance with the terms of the license agreement you entered into
- * with Sun.
- *
- * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
- * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
- * PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES
- * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
- * THIS SOFTWARE OR ITS DERIVATIVES.
- *
- */
- package java.awt.swing;
-
- import java.util.EventListener;
- import java.awt.*;
- import java.awt.event.*;
- import java.awt.image.*;
- import java.awt.swing.plaf.*;
- import java.awt.swing.event.*;
- import java.awt.accessibility.*;
-
- /**
- * An implementation of a "push" button.
- * <p>
- * See <a href="http://java.sun.com/docs/books/tutorial/ui/swing/button.html">How to Use Buttons</a>
- * in <a href="http://java.sun.com/Series/Tutorial/index.html"><em>The Java Tutorial</em></a>
- * for further documentation.
- * <p>
- * Warning: serialized objects of this class will not be compatible with
- * future swing releases. The current serialization support is appropriate
- * for short term storage or RMI between Swing1.0 applications. It will
- * not be possible to load serialized Swing1.0 objects with future releases
- * of Swing. The JDK1.2 release of Swing will be the compatibility
- * baseline for the serialized form of Swing objects.
- *
- * @beaninfo
- * attribute: isContainer false
- *
- * @version 1.56 02/12/98
- * @author Jeff Dinkins
- */
- public class JButton extends AbstractButton implements Accessible {
-
- /**
- * Creates a button with no set text or icon.
- */
- public JButton() {
- this(null, null);
- }
-
- /**
- * Creates a button with an icon.
- *
- * @param icon the Icon image to display on the button
- */
- public JButton(Icon icon) {
- this(null, icon);
- }
-
- /**
- * Creates a button with text.
- *
- * @param text the text of the button
- */
- public JButton(String text) {
- this(text, null);
- }
-
- /**
- * Creates a button with initial text and an icon.
- *
- * @param text the text of the button.
- * @param icon the Icon image to display on the button
- */
- public JButton(String text, Icon icon) {
- // Create the model
- setModel(new DefaultButtonModel());
-
- // initialize
- init(text, icon);
- }
-
- /**
- * Notification from the UIFactory that the L&F
- * has changed.
- *
- * @see JComponent#updateUI
- */
- public void updateUI() {
- setUI((ButtonUI)UIManager.getUI(this));
- }
-
-
- /**
- * Returns a string that specifies the name of the L&F class
- * that renders this component.
- *
- * @return "ButtonUI"
- * @see JComponent#getUIClassID
- * @see UIDefaults#getUI
- * @beaninfo
- * expert: true
- * description: A string that specifies the name of the L&F class.
- */
- public String getUIClassID() {
- return "ButtonUI";
- }
-
-
- /**
- * Returns whether or not this button is the default button
- * on the RootPane.
- *
- * @return "boolean"
- * @see JRootPane#setDefaultButton
- * @beaninfo
- * description: Whether or not this button is the default button
- */
- public boolean isDefaultButton() {
- JRootPane root = SwingUtilities.getRootPane(this);
- if (root != null) {
- return root.getDefaultButton() == this;
- }
- return false;
- }
-
-
- /////////////////
- // Accessibility support
- ////////////////
-
- /**
- * Get the AccessibleContext associated with this JComponent
- *
- * @return the AccessibleContext of this JComponent
- * @beaninfo
- * expert: true
- * description: The AccessibleContext associated with this Button.
- */
- public AccessibleContext getAccessibleContext() {
- if (accessibleContext == null) {
- accessibleContext = new AccessibleJButton();
- }
- return accessibleContext;
- }
-
- /**
- * The class used to obtain the accessible role for this object.
- * <p>
- * Warning: serialized objects of this class will not be compatible with
- * future swing releases. The current serialization support is appropriate
- * for short term storage or RMI between Swing1.0 applications. It will
- * not be possible to load serialized Swing1.0 objects with future releases
- * of Swing. The JDK1.2 release of Swing will be the compatibility
- * baseline for the serialized form of Swing objects.
- */
- protected class AccessibleJButton extends AccessibleAbstractButton {
-
- /**
- * Get the role of this object.
- *
- * @return an instance of AccessibleRole describing the role of the
- * object
- * @see AccessibleRole
- */
- public AccessibleRole getAccessibleRole() {
- return AccessibleRole.PUSH_BUTTON;
- }
- } // inner class AccessibleJButton
- }
-