From ca42b1b58080d7dc7fd3cefae894709832b8f70b Mon Sep 17 00:00:00 2001 From: Sergey Vladimirov Date: Wed, 21 Sep 2011 21:16:35 +0000 Subject: [PATCH] output styles information in more compact (and precise) format git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1173865 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/org/apache/poi/hwpf/dev/HWPFLister.java | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/src/scratchpad/src/org/apache/poi/hwpf/dev/HWPFLister.java b/src/scratchpad/src/org/apache/poi/hwpf/dev/HWPFLister.java index 5c4c554e9c..caed3ad41c 100644 --- a/src/scratchpad/src/org/apache/poi/hwpf/dev/HWPFLister.java +++ b/src/scratchpad/src/org/apache/poi/hwpf/dev/HWPFLister.java @@ -689,7 +689,6 @@ public final class HWPFLister return; } HWPFDocument hwpfDocument = (HWPFDocument) _doc; - ListTables listTables = hwpfDocument.getListTables(); for ( int s = 0; s < hwpfDocument.getStyleSheet().numStyles(); s++ ) { @@ -702,13 +701,13 @@ public final class HWPFLister + styleDescription.getName() + "' ===" ); System.out.println( styleDescription ); - ParagraphProperties paragraph = styleDescription.getPAP(); - System.out.println( "PAP: " + paragraph ); - if ( paragraph != null ) - { - dumpParagraphLevels( listTables, paragraph ); - } - System.out.println( "CHP: " + styleDescription.getCHP() ); + if ( styleDescription.getPAPX() != null ) + dumpSprms( new SprmIterator( styleDescription.getPAPX(), 2 ), + "Style's PAP SPRM: " ); + + if ( styleDescription.getCHPX() != null ) + dumpSprms( new SprmIterator( styleDescription.getCHPX(), 0 ), + "Style's CHP SPRM: " ); } }