Save This Page
Home » poi-src-3.2-FINAL-20081019 » org.apache » poi » ddf » [javadoc | source]
org.apache.poi.ddf
abstract public class: EscherProperty [javadoc | source]
java.lang.Object
   org.apache.poi.ddf.EscherProperty

Direct Known Subclasses:
    EscherRGBProperty, EscherComplexProperty, EscherShapePathProperty, EscherSimpleProperty, EscherArrayProperty, EscherBoolProperty

This is the abstract base class for all escher properties.
Field Summary
protected  short id     
Constructor:
 public EscherProperty(short id) 
 public EscherProperty(short propertyNumber,
    boolean isComplex,
    boolean isBlipId) 
Method from org.apache.poi.ddf.EscherProperty Summary:
getId,   getName,   getPropertyNumber,   getPropertySize,   isBlipId,   isComplex,   serializeComplexPart,   serializeSimplePart
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.apache.poi.ddf.EscherProperty Detail:
 public short getId() 
 public String getName() 
 public short getPropertyNumber() 
 public int getPropertySize() 
    Most properties are just 6 bytes in length. Override this if we're dealing with complex properties.
 public boolean isBlipId() 
 public boolean isComplex() 
 abstract public int serializeComplexPart(byte[] data,
    int pos)
    Escher properties consist of a simple fixed length part and a complex variable length part. The fixed length part is serialized first.
 abstract public int serializeSimplePart(byte[] data,
    int pos)
    Escher properties consist of a simple fixed length part and a complex variable length part. The fixed length part is serialized first.