()
| 108 | } |
| 109 | |
| 110 | public void emptyText() |
| 111 | { |
| 112 | SwingUtilities.invokeLater( |
| 113 | new Runnable() |
| 114 | { |
| 115 | public void run() |
| 116 | { |
| 117 | try |
| 118 | { |
| 119 | text.remove(0, text.getLength()); |
| 120 | } |
| 121 | catch (BadLocationException e) |
| 122 | { |
| 123 | e.printStackTrace(); |
| 124 | } |
| 125 | } |
| 126 | } |
| 127 | ); |
| 128 | } |
| 129 | } |