git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353197
13f79535-47bb-0310-9956-
ffa450edef68
return _sed;
}
+ public boolean equals(Object o)
+ {
+ SEPX sepx = (SEPX)o;
+ if (super.equals(o))
+ {
+ return sepx._sed.equals(_sed);
+ }
+ return false;
+ }
}
this.fc = fc;
}
+ public boolean equals(Object o)
+ {
+ SectionDescriptor sed = (SectionDescriptor)o;
+ return sed.fn == fn && sed.fnMpr == fnMpr;
+ }
+
public byte[] toByteArray()
{
int offset = 0;
}
}
+ public ArrayList getSections()
+ {
+ return _sections;
+ }
+
public void writeTo(HWPFFileSystem sys, int fcMin)
throws IOException
{