mirror of https://github.com/apache/poi.git
fix escher info dump
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1151862 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5485d4f5d1
commit
c5333ed1bc
|
@ -155,7 +155,7 @@ public final class HWPFLister
|
|||
|
||||
if ( "--bookmarks".equals( arg ) )
|
||||
outputBookmarks = true;
|
||||
if ( "--eschaer".equals( arg ) )
|
||||
if ( "--escher".equals( arg ) )
|
||||
outputEscher = true;
|
||||
if ( "--fields".equals( arg ) )
|
||||
outputFields = true;
|
||||
|
@ -351,8 +351,8 @@ public final class HWPFLister
|
|||
System.out.println( "Word 95 not supported so far" );
|
||||
return;
|
||||
}
|
||||
System.out.println( ( (HWPFDocument) _doc ).getEscherRecordHolder() );
|
||||
|
||||
System.out.println( ( (HWPFDocument) _doc ).getEscherRecordHolder() );
|
||||
}
|
||||
|
||||
public void dumpFIB()
|
||||
|
@ -392,11 +392,12 @@ public final class HWPFLister
|
|||
|
||||
HWPFDocument document = (HWPFDocument) _doc;
|
||||
|
||||
System.out.println( "=== Document part: MAIN ===" );
|
||||
for ( OfficeDrawing officeDrawing : document.getOfficeDrawingsMain().getOfficeDrawings() )
|
||||
{
|
||||
System.out.println( officeDrawing );
|
||||
}
|
||||
System.out.println( "=== Document part: MAIN ===" );
|
||||
for ( OfficeDrawing officeDrawing : document.getOfficeDrawingsMain()
|
||||
.getOfficeDrawings() )
|
||||
{
|
||||
System.out.println( officeDrawing );
|
||||
}
|
||||
}
|
||||
|
||||
public void dumpPapx( boolean withProperties ) throws Exception
|
||||
|
|
Loading…
Reference in New Issue