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

Direct Known Subclasses:
    EscherArrayProperty

A complex property differs from a simple property in that the data can not fit inside a 32 bit integer. See the specification for more detailed information regarding exactly what is stored here.
Field Summary
 byte[] complexData     
Fields inherited from org.apache.poi.ddf.EscherProperty:
id
Constructor:
 public EscherComplexProperty(short id,
    byte[] complexData) 
 public EscherComplexProperty(short propertyNumber,
    boolean isBlipId,
    byte[] complexData) 
Method from org.apache.poi.ddf.EscherComplexProperty Summary:
equals,   getComplexData,   getPropertySize,   hashCode,   serializeComplexPart,   serializeSimplePart,   toString
Methods from org.apache.poi.ddf.EscherProperty:
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.EscherComplexProperty Detail:
 public boolean equals(Object o) 
    Determine whether this property is equal to another property.
 public byte[] getComplexData() 
    Get the complex data value.
 public int getPropertySize() 
    Caclulates the number of bytes required to serialize this property.
 public int hashCode() 
    Calculates a hashcode for this property.
 public int serializeComplexPart(byte[] data,
    int pos) 
    Serializes the complex part of this property
 public int serializeSimplePart(byte[] data,
    int pos) 
    Serializes the simple part of this property. ie the first 6 bytes.
 public String toString() 
    Retrieves the string representation for this property.