Class java.awt.Button (1.0)
public class Button extends Component {
// Public Constructors
public Button( );
public Button(String label);
// Protected Instance Variables
protected ActionListener actionListener;
// Public Instance Methods
public void addActionListener(ActionListener l);
public void addNotify( ); // Overrides Component.addNotify( )
public String getActionCommand( );
public String getLabel( );
public void removeActionListener(ActionListener l);
public void setActionCommand(String command);
public synchronized void setLabel(String label);
// Protected Instance Methods
protected String paramString( ); // Overrides Component.paramString( )
protected void processActionEvent(ActionEvent e);
protected void processEvent(AWTEvent e); // Overrides Component.processEvent( )
}