import java.awt.*; import java.awt.event.*; import java.io.*; public class TextPopup extends Frame{ TextArea theDisplay = new TextArea(15,40); public TextPopup() { this.add("Center", theDisplay); //this.setLocation(50, 50); theDisplay.setBackground(Color.white); theDisplay.setText(""); this.pack(); //this.show(); } public TextPopup(String theText) { this.add("Center", theDisplay); //this.setLocation(50, 50); theDisplay.setBackground(Color.white); theDisplay.setText(theText); this.pack(); //this.show(); } public void setText(String theText) { theDisplay.setText(theText); } }