1 29 30 package com.caucho.vfs; 31 32 import java.io.IOException ; 33 34 37 public class NullWriteStream extends WriteStream { 38 public boolean canWrite() 39 { 40 return true; 41 } 42 43 46 public void write(int ch) 47 throws IOException  48 { 49 } 50 51 54 public void write(byte []buf, int offset, int length) 55 throws IOException  56 { 57 } 58 59 62 public void write(byte []buf) 63 throws IOException  64 { 65 } 66 67 70 public void flush() 71 throws IOException  72 { 73 } 74 } 75 | Popular Tags |