131132133134135136137
* @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)); }
* @param os The <CODE>OutputStream</CODE> the writer has to write to. */ protected DocWriter(LwgDocument document, OutputStream os) { this.document = document; this.os = new OutputStreamCounter(new BufferedOutputStream(os)); }
132133134135136137138