import java.applet.*; import java.awt.*; public class Alus01 extends Applet{ Tah05 tahvel31=new Tah05(200,100 ); Tah05 tahvel3=new Tah05(200,100 ); Button nupp1=new Button("Pildi sisu"); TextArea kiri=new TextArea(10, 10); public void init(){ this.add(tahvel31); this.add(tahvel3); this.add(nupp1); this.add(kiri);} public boolean action(Event e, Object arg){ if(e.target==nupp1){ String s=tahvel3.pildistring(); kiri.appendText(s+"\n"); tahvel31.stringipilt(s); } return super.action(e, arg); } }