Lines Matching defs:textArea
60 JTextArea textArea;
67 textArea = new JTextArea(15, 40);
68 textArea.setEditable(false);
69 textArea.setLineWrap(true);
70 textArea.setWrapStyleWord(true);
83 info.getContentPane().add(new JScrollPane(textArea));
91 textArea.append( msg );
92 textArea.setCaretPosition( textArea.getText().length() );
96 textArea.append( msg + "\n");
97 textArea.setCaretPosition( textArea.getText().length() );
101 textArea.append( "\n");
102 textArea.setCaretPosition( textArea.getText().length() );