Classe java.awt.Button


package java.awt;

import java.awt.peer.ButtonPeer;
import java.awt.event.*;
import java.io.ObjectOutputStream;
import java.io.ObjectInputStream;
import java.io.IOException;

public class Button extends Component {
    
    // Constructeurs publics
    public Button();
    public Button(String label);

    // Méthodes d'instance publiques
    public synchronized void addActionListener(ActionListener l);
    public void addNotify();
    public String getActionCommand();
    public String getLabel();
    public synchronized void removeActionListener(ActionListener l);
    public void setActionCommand(String command);
    public synchronized void setLabel(String label);

    // Méthodes d'instance protégés
    protected String paramString();
    protected void processActionEvent(ActionEvent e);
    protected void processEvent(AWTEvent e);
}

Christophe Merlet
redfox@redfoxcenter.org
©Tous droits réservés
5 septembre 1998