mirror of https://github.com/apache/poi.git
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
This commit is contained in:
parent
9d215e164d
commit
ca42b1b580
|
@ -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: " );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue