125126127128129130131
* @param os The <CODE>OutputStream</CODE> the writer has to write to. */ protected DocWriter(Document document, OutputStream os) { this.document = document; this.os = new OutputStreamCounter(new BufferedOutputStream(os)); }
126127128129130131132