/* SafeTextArea.java - synchronised to keep thread safe Written by Robert Sheehan 26/08/97 */ import java.awt.*; public class SafeTextArea extends TextArea { public SafeTextArea(String text, int rows, int cols) { super(text, rows, cols); } public SafeTextArea(int rows, int cols) { super(rows, cols); } public synchronized void appendText(String text) { super.appendText(text); } }