]> source.dussan.org Git - poi.git/commitdiff
dump text run properties
authorSergey Vladimirov <sergey@apache.org>
Thu, 7 Jul 2011 15:59:20 +0000 (15:59 +0000)
committerSergey Vladimirov <sergey@apache.org>
Thu, 7 Jul 2011 15:59:20 +0000 (15:59 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1143895 13f79535-47bb-0310-9956-ffa450edef68

src/scratchpad/src/org/apache/poi/hwpf/dev/HWPFLister.java

index f85e2f1c54747152b61803ec0a44234ab20c6250..2ceeb4713ea3460fc6283a3a58d0d424ab5ed179 100644 (file)
@@ -32,6 +32,7 @@ import org.apache.poi.hwpf.OldWordFileFormatException;
 import org.apache.poi.hwpf.model.CHPX;
 import org.apache.poi.hwpf.model.FileInformationBlock;
 import org.apache.poi.hwpf.model.PAPX;
+import org.apache.poi.hwpf.model.StyleSheet;
 import org.apache.poi.hwpf.model.TextPiece;
 import org.apache.poi.hwpf.sprm.SprmIterator;
 import org.apache.poi.hwpf.sprm.SprmOperation;
@@ -242,9 +243,12 @@ public final class HWPFLister
         {
             System.out.println( chpx );
 
+            System.out.println( chpx.getCharacterProperties(
+                    _doc.getStyleSheet(), (short) StyleSheet.NIL_STYLE ) );
+
             if ( withSprms )
             {
-                SprmIterator sprmIt = new SprmIterator( chpx.getGrpprl(), 2 );
+                SprmIterator sprmIt = new SprmIterator( chpx.getGrpprl(), 0 );
                 while ( sprmIt.hasNext() )
                 {
                     SprmOperation sprm = sprmIt.next();