Código:
import java.awt.*; import java.applet.*; public class APP extends Applet{ Button b1,b2; watch reloj = new watch(); public void init(){ b1 = new Button("tiempo"); b2 = new Button("parar"); reloj.start(); this.add(b1); this.add(b2); } public boolean action (Event evt,Object obj){ if(evt.target.equals(b1)){ System.out.println("boton 1"); // quiero que aparecsa en el applet }else if(evt.target.equals(b2)){ System.out.println("boton 2"); } return true; } }