import java.awt.*;
import java.applet.*;

public class Applet1 extends Applet
{
Button boton1= new Button("Boton 1");
Button boton2= new Button("Boton 2");
Label etiqueta=new Label("Etiqueta del ejemplo");
public void init()
{
	setBackground(Color.blue);
	setForeground(Color.yellow);
	add(boton1);
	add(etiqueta);
	add(boton2);
	
}


	public boolean action(Event e, Object arg)
{
if(e.target instanceof Button)
 {
if(arg.equals("Boton 1"))
etiqueta.setText("Se preciono el boton 1");
if(arg.equals("Boton 2"))
etiqueta.setText("Se preciono el boton 2");
}
return true;
}
}


  
	
		