| java.lang.Object org.apache.poi.hwpf.model.PropertyNode
All known Subclasses: org.apache.poi.hwpf.model.CHPX, org.apache.poi.hwpf.model.PAPX, org.apache.poi.hwpf.model.GenericPropertyNode, org.apache.poi.hwpf.model.TextPiece, org.apache.poi.hwpf.model.SEPX, org.apache.poi.hwpf.model.CachedPropertyNode,
PropertyNode | abstract public class PropertyNode implements Comparable,Cloneable(Code) | | Represents a lightweight node in the Trees used to store content
properties.
author: Ryan Ackley |
PropertyNode | protected PropertyNode(int fcStart, int fcEnd, Object buf)(Code) | | Parameters: fcStart - The start of the text for this property. Parameters: fcEnd - The end of the text for this property. Parameters: buf - FIXME: Old documentation is: "grpprl The property description in compressed form." |
adjustForDelete | public void adjustForDelete(int start, int length)(Code) | | Adjust for a deletion that can span multiple PropertyNodes.
Parameters: start - Parameters: length - |
compareTo | public int compareTo(Object o)(Code) | | Used for sorting in collections.
|
getEnd | public int getEnd()(Code) | | The offset of the end of this property's text. |
getStart | public int getStart()(Code) | | The offset of this property's text. |
limitsAreEqual | protected boolean limitsAreEqual(Object o)(Code) | | |
setEnd | public void setEnd(int end)(Code) | | |
setStart | public void setStart(int start)(Code) | | |
|
|