⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 button.java

📁 this gcc-g++-3.3.1.tar.gz is a source file of gcc, you can learn more about gcc through this codes f
💻 JAVA
字号:
/* Button.java -- AWT button widget   Copyright (C) 1999, 2002 Free Software Foundation, Inc.This file is part of GNU Classpath.GNU Classpath is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2, or (at your option)any later version.GNU Classpath is distributed in the hope that it will be useful, butWITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNUGeneral Public License for more details.You should have received a copy of the GNU General Public Licensealong with GNU Classpath; see the file COPYING.  If not, write to theFree Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA02111-1307 USA.Linking this library statically or dynamically with other modules ismaking a combined work based on this library.  Thus, the terms andconditions of the GNU General Public License cover the wholecombination.As a special exception, the copyright holders of this library give youpermission to link this library with independent modules to produce anexecutable, regardless of the license terms of these independentmodules, and to copy and distribute the resulting executable underterms of your choice, provided that you also meet, for each linkedindependent module, the terms and conditions of the license of thatmodule.  An independent module is a module which is not derived fromor based on this library.  If you modify this library, you may extendthis exception to your version of the library, but you are notobligated to do so.  If you do not wish to do so, delete thisexception statement from your version. */package java.awt;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;import java.awt.peer.ButtonPeer;import java.awt.peer.ComponentPeer;import java.lang.reflect.Array;import java.util.EventListener;/**  * This class provides a button widget for the AWT.   *  * @author Aaron M. Renn (arenn@urbanophile.com)  * @author Tom Tromey <tromey@cygnus.com>  */public class Button extends Component implements java.io.Serializable{/* * Static Variables */// FIXME: Need readObject/writeObject for serialization// Serialization version constantprivate static final long serialVersionUID = -8774683716313001058L;/*************************************************************************//* * Instance Variables *//**  * @serial The action command name for this button.  */private String actionCommand;/**  * @serial The label for this button.  */private String label;// List of ActionListeners for this class.private transient ActionListener action_listeners;/*************************************************************************//* * Constructors *//**  * Initializes a new instance of <code>Button</code> with no label.  *  * @exception HeadlessException If GraphicsEnvironment.isHeadless()  * returns true  */publicButton(){  this(null);}/*************************************************************************//**  * Initializes a new instance of <code>Button</code> with the specified  * label.  The action command name is also initialized to this value.  *  * @param label The label to display on the button.  *  * @exception HeadlessException If GraphicsEnvironment.isHeadless()  * returns true  */publicButton(String label){  this.label = label;  actionCommand = label;  if (GraphicsEnvironment.isHeadless ())    throw new HeadlessException ();}/*************************************************************************//* * Instance Variables *//**  * Returns the label for this button.  *  * @return The label for this button.  */public StringgetLabel(){  return(label);}/*************************************************************************//**  * Sets the label for this button to the specified value.  *  * @param label The new label for this button.  */public synchronized voidsetLabel(String label){  this.label = label;  if (peer != null)    {      ButtonPeer bp = (ButtonPeer) peer;      bp.setLabel (label);    }}/*************************************************************************//**  * Returns the action command name for this button.  *  * @return The action command name for this button.  */public StringgetActionCommand(){  return(actionCommand);}/*************************************************************************//**  * Sets the action command name for this button to the specified value.  *  * @param actionCommand The new action command name.  */public voidsetActionCommand(String actionCommand){  this.actionCommand = actionCommand == null ? label : actionCommand;}/*************************************************************************//**  * Adds a new entry to the list of listeners that will receive  * action events from this button.  *  * @param listener The listener to add.  */public synchronized voidaddActionListener(ActionListener listener){  action_listeners = AWTEventMulticaster.add(action_listeners, listener);}/*************************************************************************//**  * Removes the specified listener from the list of listeners that will  * receive action events from this button.  *   * @param listener The listener to remove.  */public synchronized voidremoveActionListener(ActionListener listener){  action_listeners = AWTEventMulticaster.remove(action_listeners, listener);}  public synchronized ActionListener[] getActionListeners()  {    return (ActionListener[])      AWTEventMulticaster.getListeners(action_listeners,                                       ActionListener.class);  }/** Returns all registered EventListers of the given listenerType.  * listenerType must be a subclass of EventListener, or a  * ClassClassException is thrown. * * @exception ClassCastException If listenerType doesn't specify a class or * interface that implements @see java.util.EventListener. * * @since 1.3  */  public EventListener[] getListeners(Class listenerType)  {    if (listenerType == ActionListener.class)      return getActionListeners();    return (EventListener[]) Array.newInstance(listenerType, 0);  }/*************************************************************************//**  * Notifies this button that it should create its native peer object.  */public voidaddNotify(){  if (peer == null)    peer = getToolkit ().createButton (this);  super.addNotify();}/*************************************************************************//**  * Processes an event for this button.  If the specified event is an  * instance of <code>ActionEvent</code>, then the  * <code>processActionEvent()</code> method is called to dispatch it  * to any registered listeners.  Otherwise, the superclass method  * will be invoked.  Note that this method will not be called at all  * unless <code>ActionEvent</code>'s are enabled.  This will be done  * implicitly if any listeners are added.  *  * @param event The event to process.  */protected voidprocessEvent(AWTEvent event){  if (event instanceof ActionEvent)    processActionEvent((ActionEvent)event);  else    super.processEvent(event);}/*************************************************************************//**  * This method dispatches an action event for this button to any  * registered listeners.  *  * @param event The event to process.  */protected voidprocessActionEvent(ActionEvent event){  if (action_listeners != null)    action_listeners.actionPerformed(event);}voiddispatchEventImpl(AWTEvent e){  if (e.id <= ActionEvent.ACTION_LAST       && e.id >= ActionEvent.ACTION_FIRST      && (action_listeners != null 	  || (eventMask & AWTEvent.ACTION_EVENT_MASK) != 0))    processEvent(e);  else    super.dispatchEventImpl(e);}/*************************************************************************//**  * Returns a debugging string for this button.  *  * @return A debugging string for this button.  */protected StringparamString(){  return ("label=" + getLabel() + ",actionCommand=" + getActionCommand()	  + "," + super.paramString());}} // class Button 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -