FileDocCategorySizeDatePackage
SectionProperties.javaAPI DocApache Poi 3.0.12508Mon Jan 01 18:55:30 GMT 2007org.apache.poi.hwpf.usermodel

SectionProperties

public class SectionProperties extends SEPAbstractType

Fields Summary
Constructors Summary
public SectionProperties()

    field_20_brcTop = new BorderCode();
    field_21_brcLeft = new BorderCode();
    field_22_brcBottom = new BorderCode();
    field_23_brcRight = new BorderCode();
    field_26_dttmPropRMark = new DateAndTime();
  
Methods Summary
public java.lang.Objectclone()

    SectionProperties copy = (SectionProperties)super.clone();
    copy.field_20_brcTop = (BorderCode)field_20_brcTop.clone();
    copy.field_21_brcLeft = (BorderCode)field_21_brcLeft.clone();
    copy.field_22_brcBottom = (BorderCode)field_22_brcBottom.clone();
    copy.field_23_brcRight = (BorderCode)field_23_brcRight.clone();
    copy.field_26_dttmPropRMark = (DateAndTime)field_26_dttmPropRMark.clone();

    return copy;
  
public booleanequals(java.lang.Object obj)

    Field[] fields = SectionProperties.class.getSuperclass().getDeclaredFields();
    AccessibleObject.setAccessible(fields, true);
    try
    {
      for (int x = 0; x < fields.length; x++)
      {
        Object obj1 = fields[x].get(this);
        Object obj2 = fields[x].get(obj);
        if (obj1 == null && obj2 == null)
        {
          continue;
        }
        if (!obj1.equals(obj2))
        {
          return false;
        }
      }
      return true;
    }
    catch (Exception e)
    {
      return false;
    }