Methods Summary |
---|
public short | getId()
return id;
|
public java.lang.String | getName()
return EscherProperties.getPropertyName(id);
|
public short | getPropertyNumber()
return (short) ( id & (short) 0x3FFF );
|
public int | getPropertySize()Most properties are just 6 bytes in length. Override this if we're
dealing with complex properties.
return 6;
|
public boolean | isBlipId()
return ( id & (short) 0x4000 ) != 0;
|
public boolean | isComplex()
return ( id & (short) 0x8000 ) != 0;
|
public abstract 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.
|
public abstract 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.
|