| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Object
  |
  +--java.io.OutputStream
        |
        +--org.apache.tools.ant.util.TeeOutputStream
A simple T-piece to replicate an output stream into two separate streams
| Constructor Summary | |
| TeeOutputStream(java.io.OutputStream left,
                java.io.OutputStream right)Constructor for TeeOutputStream. | |
| Method Summary | |
|  void | close()Close both output streams. | 
|  void | flush()Flush both output streams. | 
|  void | write(byte[] b)Write a byte array to both output streams. | 
|  void | write(byte[] b,
      int off,
      int len)Write a byte array to both output streams. | 
|  void | write(int b)Write a byte to both output streams. | 
| Methods inherited from class java.lang.Object | 
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
| Constructor Detail | 
public TeeOutputStream(java.io.OutputStream left,
                       java.io.OutputStream right)
left - one of the output streams.right - the other output stream.| Method Detail | 
public void close()
           throws java.io.IOException
close in class java.io.OutputStreamjava.io.IOException - on error.
public void flush()
           throws java.io.IOException
flush in class java.io.OutputStreamjava.io.IOException - on error
public void write(byte[] b)
           throws java.io.IOException
write in class java.io.OutputStreamb - an array of bytes.
java.io.IOException - on error.
public void write(byte[] b,
                  int off,
                  int len)
           throws java.io.IOException
write in class java.io.OutputStreamb - the data.off - the start offset in the data.len - the number of bytes to write.
java.io.IOException - on error.
public void write(int b)
           throws java.io.IOException
write in class java.io.OutputStreamb - the byte to write.
java.io.IOException - on error.| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||