Appends the text in the specified file to the end of this TextWindow.
(BufferedReader in)
| 301 | |
| 302 | /** Appends the text in the specified file to the end of this TextWindow. */ |
| 303 | public void load(BufferedReader in) throws IOException { |
| 304 | int count=0; |
| 305 | while (true) { |
| 306 | String s=in.readLine(); |
| 307 | if (s==null) break; |
| 308 | textPanel.appendLine(s); |
| 309 | } |
| 310 | } |
| 311 | |
| 312 | public void actionPerformed(ActionEvent evt) { |
| 313 | String cmd = evt.getActionCommand(); |
no test coverage detected