Home | History | Annotate | Download | only in output

Lines Matching refs:branch

32     protected OutputStream branch;

37 * @param branch the second OutputStream
39 public TeeOutputStream( OutputStream out, OutputStream branch ) {
41 this.branch = branch;
51 this.branch.write(b);
63 this.branch.write(b, off, len);
73 this.branch.write(b);
82 this.branch.flush();
91 this.branch.close();