FileDocCategorySizeDatePackage
CachedPropertyNode.javaAPI DocApache Poi 3.0.11597Mon Jan 01 18:55:34 GMT 2007org.apache.poi.hwpf.model

CachedPropertyNode

public class CachedPropertyNode extends PropertyNode

Fields Summary
protected SoftReference
_propCache
Constructors Summary
public CachedPropertyNode(int start, int end, SprmBuffer buf)

    super(start, end, buf);
  
Methods Summary
protected voidfillCache(java.lang.Object ref)

    _propCache = new SoftReference(ref);
  
protected java.lang.ObjectgetCacheContents()

    return _propCache == null ? null : _propCache.get();
  
public org.apache.poi.hwpf.sprm.SprmBuffergetSprmBuf()

return
This property's property in compressed form.

    return (SprmBuffer)_buf;