1 19 20 package org.netbeans.modules.loadgenerator.utils; 21 22 import java.io.IOException ; 23 import java.io.Writer ; 24 import org.openide.windows.OutputListener; 25 import org.openide.windows.OutputWriter; 26 27 31 public class NullOutputWriter extends OutputWriter { 32 private final static Writer writer = new NullWriter(); 33 34 35 public NullOutputWriter() { 36 super(writer); 37 } 38 39 public void println(String string, OutputListener outputListener) throws IOException { 40 } 41 42 public void reset() throws IOException { 43 } 44 45 } 46 | Popular Tags |