Search in sources :

Example 6 with HWPFOutputStream

use of org.apache.poi.hwpf.model.io.HWPFOutputStream in project poi by apache.

the class CHPBinTable method writeTo.

@Deprecated
public void writeTo(HWPFFileSystem sys, int fcMin, CharIndexTranslator translator) throws IOException {
    HWPFOutputStream docStream = sys.getStream("WordDocument");
    HWPFOutputStream tableStream = sys.getStream("1Table");
    writeTo(docStream, tableStream, fcMin, translator);
}
Also used : HWPFOutputStream(org.apache.poi.hwpf.model.io.HWPFOutputStream)

Example 7 with HWPFOutputStream

use of org.apache.poi.hwpf.model.io.HWPFOutputStream in project poi by apache.

the class ComplexFileTable method writeTo.

@Deprecated
public void writeTo(HWPFFileSystem sys) throws IOException {
    HWPFOutputStream docStream = sys.getStream("WordDocument");
    HWPFOutputStream tableStream = sys.getStream("1Table");
    writeTo(docStream, tableStream);
}
Also used : HWPFOutputStream(org.apache.poi.hwpf.model.io.HWPFOutputStream)

Example 8 with HWPFOutputStream

use of org.apache.poi.hwpf.model.io.HWPFOutputStream in project poi by apache.

the class FontTable method writeTo.

@Deprecated
public void writeTo(HWPFFileSystem sys) throws IOException {
    HWPFOutputStream tableStream = sys.getStream("1Table");
    writeTo(tableStream);
}
Also used : HWPFOutputStream(org.apache.poi.hwpf.model.io.HWPFOutputStream)

Aggregations

HWPFOutputStream (org.apache.poi.hwpf.model.io.HWPFOutputStream)8 HWPFFileSystem (org.apache.poi.hwpf.model.io.HWPFFileSystem)3 Test (org.junit.Test)2 HWPFDocFixture (org.apache.poi.hwpf.HWPFDocFixture)1 HWPFDocument (org.apache.poi.hwpf.HWPFDocument)1 DocumentEntry (org.apache.poi.poifs.filesystem.DocumentEntry)1 Entry (org.apache.poi.poifs.filesystem.Entry)1