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);
}
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);
}
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);
}
Aggregations