1 19 20 package org.openide.windows; 21 22 import java.io.IOException ; 23 import java.io.PrintWriter ; 24 import java.io.Writer ; 25 26 35 public abstract class OutputWriter extends PrintWriter { 36 39 protected OutputWriter (Writer w) { 40 super(w); 41 } 42 43 52 public abstract void println(String s, OutputListener l) throws IOException ; 53 54 70 public void println(String s, OutputListener l, boolean important) throws IOException { 71 println(s, l); 72 } 73 74 82 public abstract void reset() throws IOException ; 83 } 84 | Popular Tags |