01: /*
02: * Created on Sep 30, 2005
03: */
04: package uk.org.ponder.streamutil.write;
05:
06: public class DevNullPOS implements PrintOutputStream {
07:
08: public void println(String toprint) {
09: }
10:
11: public void flush() {
12: }
13:
14: public void close() {
15: }
16:
17: public PrintOutputStream print(String string) {
18: return this ;
19: }
20:
21: public void println() {
22: }
23:
24: public void println(Object obj) {
25: }
26:
27: public void write(char[] storage, int offset, int size) {
28: }
29:
30: }
|