Package org.apache.poi.hwpf.model.types
Class FRDAbstractType
- java.lang.Object
-
- org.apache.poi.hwpf.model.types.FRDAbstractType
-
- Direct Known Subclasses:
FootnoteReferenceDescriptor
@Internal public abstract class FRDAbstractType extends Object
Footnote Reference Descriptor (FRD).Class and fields descriptions are quoted from Microsoft Office Word 97-2007 Binary File Format (.doc) Specification
-
-
Field Summary
Fields Modifier and Type Field Description protected shortfield_1_nAuto
-
Constructor Summary
Constructors Modifier Constructor Description protectedFRDAbstractType()protectedFRDAbstractType(FRDAbstractType other)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidfillFields(byte[] data, int offset)shortgetNAuto()If > 0, the note is an automatically numbered note, otherwise it has a custom mark.static intgetSize()Size of recordvoidserialize(byte[] data, int offset)voidsetNAuto(short field_1_nAuto)If > 0, the note is an automatically numbered note, otherwise it has a custom mark.StringtoString()
-
-
-
Constructor Detail
-
FRDAbstractType
protected FRDAbstractType()
-
FRDAbstractType
protected FRDAbstractType(FRDAbstractType other)
-
-
Method Detail
-
fillFields
protected void fillFields(byte[] data, int offset)
-
serialize
public void serialize(byte[] data, int offset)
-
getSize
public static int getSize()
Size of record
-
getNAuto
public short getNAuto()
If > 0, the note is an automatically numbered note, otherwise it has a custom mark.
-
setNAuto
public void setNAuto(short field_1_nAuto)
If > 0, the note is an automatically numbered note, otherwise it has a custom mark.
-
-