static JTextArea newTypeWriterTextArea() { new JTextArea textArea; textArea.setFont(typeWriterFont()); return textArea; } static JTextArea newTypeWriterTextArea(S text) { JTextArea textArea = newTypeWriterTextArea(); textArea.setText(text); ret textArea; }