Hola, anoche al final conseguí hacerlo. Yo lo hice así, por si a alguien le interesa:
Código:
public void actionPerformed(ActionEvent e){
Component b = (Component)e.getSource();
if(b==b1){
String texto1 = t1.getText();
String texto2 = t2.getText();
String texto3 = t3.getText();
String texto = t1.getText()+"\n"+t2.getText()+"\n"+t3.getText();
area.insertText(texto,1);
}
if(b==b2) area.setText("");
}
Gracias por tu ayuda