public class Boton extends JFrame implements ActionListener
{
// declaracion de las variables , ya sabes....
Boton()
{
Container c=getContentPane();
JButton A=new JButton;
A.addActionListener(this);
A.add(this);
this.setVisible(true);
}
public static void main(StringArgs[])
{
ya sabes ke va aki....
}
public ActionPerformed(ActionEvent ev)
{
if(A==ev.getSource())
{
System.print("HOLA!!!");
}
}
}