1112131415161718
private boolean writeOut; private ScrollableJTextArea text; public LogStream(String filename) throws IOException { super(filename); text = new ScrollableJTextArea(); writeOut = true; }
1718192021222324
writeOut = true; } public LogStream() throws IOException { super(System.out); text = new ScrollableJTextArea(); writeOut = true; }