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

SEPX

public class SEPX extends PropertyNode

Fields Summary
SectionDescriptor
_sed
Constructors Summary
public SEPX(SectionDescriptor sed, int start, int end, byte[] grpprl)

    super(start, end, SectionSprmUncompressor.uncompressSEP(grpprl, 0));
    _sed = sed;
  
Methods Summary
public booleanequals(java.lang.Object o)

    SEPX sepx = (SEPX)o;
    if (super.equals(o))
    {
      return sepx._sed.equals(_sed);
    }
    return false;
  
public byte[]getGrpprl()

    return SectionSprmCompressor.compressSectionProperty((SectionProperties)_buf);
  
public org.apache.poi.hwpf.model.SectionDescriptorgetSectionDescriptor()

    return _sed;
  
public org.apache.poi.hwpf.usermodel.SectionPropertiesgetSectionProperties()

    return (SectionProperties)_buf;