Here you can find the source of clearTextArea(JTextArea textArea)
private static void clearTextArea(JTextArea textArea)
//package com.java2s; //License from project: Apache License import javax.swing.JTextArea; public class Main { private static void clearTextArea(JTextArea textArea) { if (textArea.getLineCount() > 200) { textArea.setText(""); }/* w w w. j a v a 2 s . c o m*/ } }