Save This Page
Home » poi-src-3.2-FINAL-20081019 » org.apache » poi » ddf » [javadoc | source]
org.apache.poi.ddf
public class: EscherDump [javadoc | source]
java.lang.Object
   org.apache.poi.ddf.EscherDump
Used to dump the contents of escher records to a PrintStream.
Constructor:
 public EscherDump() 
Method from org.apache.poi.ddf.EscherDump Summary:
dump,   dump,   dumpOld,   main
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.apache.poi.ddf.EscherDump Detail:
 public  void dump(int recordSize,
    byte[] data,
    PrintStream out) throws LittleEndian.BufferUnderrunException, IOException 
 public  void dump(byte[] data,
    int offset,
    int size,
    PrintStream out) throws LittleEndian.BufferUnderrunException, IOException 
    Decodes the escher stream from a byte array and dumps the results to a print stream.
 public  void dumpOld(long maxLength,
    InputStream in,
    PrintStream out) throws LittleEndian.BufferUnderrunException, IOException 
    This version of dump is a translation from the open office escher dump routine.
 public static  void main(String[] args) throws IOException 
    A simple test stub.