Java in a Nutshell Online Quick Reference for Java 1.1

CLASS java.awt.Button

Availability: JDK 1.0

public class Button extends Component {
   // Public Constructors
      public Button();
      public Button(String label);
   // Public Instance Methods
1.1  public void addActionListener(ActionListener l);
      public void addNotify();  // Overrides Component.addNotify()
1.1  public String getActionCommand();
      public String getLabel();
1.1  public void removeActionListener(ActionListener l);
1.1  public void setActionCommand(String command);
      public synchronized void setLabel(String label);
   // Protected Instance Methods
      protected String paramString();  // Overrides Component.paramString()
1.1  protected void processActionEvent(ActionEvent e);
1.1  protected void processEvent(AWTEvent e);  // Overrides Component.processEvent()
}
Passed To:
Toolkit.createButton().

Java in a Nutshell Online Quick Reference for Java 1.1
Created by David Flanagan. Copyright © 1997 by O'Reilly & Associates.