Ejemplo n.º 1
0
 /** @see InputStream#read(byte[]) */
 public int read(byte[] b) throws IOException {
   return processInputStream.read(b);
 }
Ejemplo n.º 2
0
 /** @see InputStream#read(byte[], int, int) */
 public int read(byte[] b, int off, int len) throws IOException {
   return processInputStream.read(b, off, len);
 }
Ejemplo n.º 3
0
 /** @see InputStream#read() */
 public int read() throws IOException {
   return processInputStream.read();
 }