Constructor JTextArea(String text, int rows, int columns)
Member of: javax.swing.JTextArea
[api documentation ] [ main menu]

Examples of how the element is used (one line per example):
[add your own example]

1 this (new JTextArea(text, rows, columns));
2 JTextArea textArea = new JTextArea(createErrorLog(e),20,50);
3 JTextArea textWrapper = new JTextArea(specialAttributeValue, 1, 40);
4 refField = new JTextArea((String)brickAttributes.get("href"),1,20);
5 matchField = new JTextArea(getSelectedContentSequenceReference(),1,20);
6 _pathField = new JTextArea( NO_PATH_STRING, 5, 15 );
7 JTextArea msg = new JTextArea("The following experiments must be saved to the database in order to be updated:", 3, 100);
8 queryarea = new JTextArea(query, 3, 70);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.