List of usage examples for javax.swing JTextArea show
@Deprecated public void show()
From source file:JTextAreaDemo.java
public JTextAreaDemo() { super("JTextAreaDemo"); GraphicsEnvironment.getLocalGraphicsEnvironment(); Font font = new Font("LucidaSans", Font.PLAIN, 40); JTextArea textArea = new JTextArea(davidMessage + andyMessage); textArea.setFont(font);/*ww w .ja v a2s . c o m*/ this.getContentPane().add(textArea); textArea.show(); }