FileDocCategorySizeDatePackage
TopMarginRecord.javaAPI DocApache Poi 3.0.13459Mon Jan 01 12:39:40 GMT 2007org.apache.poi.hssf.record

TopMarginRecord

public class TopMarginRecord extends Record implements Margin
Record for the top margin. NOTE: This source was automatically generated.
author
Shawn Laubach (slaubach at apache dot org)

Fields Summary
public static final short
sid
private double
field_1_margin
Constructors Summary
public TopMarginRecord()


             
public TopMarginRecord(RecordInputStream in)
Constructs a TopMargin record and sets its fields appropriately.

param
id id must be 0x28 or an exception will be throw upon validation
param
size size the size of the data area of the record
param
data data of the record (should not contain sid/len)

        super( in );    
Methods Summary
public java.lang.Objectclone()

        TopMarginRecord rec = new TopMarginRecord();
        rec.field_1_margin = this.field_1_margin;
        return rec;
    
protected voidfillFields(org.apache.poi.hssf.record.RecordInputStream in)

        field_1_margin = in.readDouble();
    
public doublegetMargin()
Get the margin field for the TopMargin record.

        return field_1_margin;    
public intgetRecordSize()
Size of record (exluding 4 byte header)

        return 4 + 8;    
public shortgetSid()

        return sid;    
public intserialize(int offset, byte[] data)

        LittleEndian.putShort( data, 0 + offset, sid );
        LittleEndian.putShort( data, 2 + offset, (short) ( getRecordSize() - 4 ) );
        LittleEndian.putDouble( data, 4 + offset, field_1_margin );
        return getRecordSize();
    
public voidsetMargin(double field_1_margin)
Set the margin field for the TopMargin record.

        this.field_1_margin = field_1_margin;    
public java.lang.StringtoString()

        StringBuffer buffer = new StringBuffer();
        buffer.append( "[TopMargin]\n" );
        buffer.append( "    .margin               = " ).append( " (" ).append( getMargin() ).append( " )\n" );
        buffer.append( "[/TopMargin]\n" );
        return buffer.toString();
    
protected voidvalidateSid(short id)
Checks the sid matches the expected side for this record

param
id the expected sid.

        if ( id != sid )
        {
            throw new RecordFormatException( "Not a TopMargin record" );
        }