sackley 2003/11/10 03:48:26
Modified: src/scratchpad/src/org/apache/poi/hwpf HWPFDocument.java
Log:
latest changes...still not working though!
Revision Changes Path
1.4 +28 -0
jakarta-poi/src/scratchpad/src/org/apache/poi/hwpf/HWPFDocument.java
Index: HWPFDocument.java
===================================================================
RCS file:
/home/cvs/jakarta-poi/src/scratchpad/src/org/apache/poi/hwpf/HWPFDocument.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- HWPFDocument.java 15 Jul 2003 03:22:32 -0000 1.3
+++ HWPFDocument.java 10 Nov 2003 11:48:26 -0000 1.4
@@ -161,6 +161,12 @@
}
+ public StyleSheet getStyleSheet()
+ {
+ return _ss;
+ }
+
+
/**
* Writes out the word file that is represented by an instance of this class.
*
@@ -270,6 +276,28 @@
pfs.writeFilesystem(out);
}
+
+ CHPBinTable getCharacterTable()
+ {
+ return _cbt;
+ }
+
+ PAPBinTable getParagraphTable()
+ {
+ return _pbt;
+ }
+
+ SectionTable getSectionTable()
+ {
+ return _st;
+ }
+
+ TextPieceTable getTextTable()
+ {
+ return _cft.getTextPieceTable();
+ }
+
+
/**
* Takes two arguments, 1) name of the Word file to read in 2) location to
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]