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

CountryRecord

public class CountryRecord extends Record
Title: Country Record (aka WIN.INI country)

Description: used for localization. Currently HSSF always sets this to 1 and it seems to work fine even in Germany. (es geht's auch fuer Deutschland)

REFERENCE: PG 298 Microsoft Excel 97 Developer's Kit (ISBN: 1-57231-498-2)

author
Andrew C. Oliver (acoliver at apache dot org)
version
2.0-pre

Fields Summary
public static final short
sid
private short
field_1_default_country
private short
field_2_current_country
Constructors Summary
public CountryRecord()


     
    
    
public CountryRecord(RecordInputStream in)
Constructs a CountryRecord and sets its fields appropriately

param
id id must be 0x8c or an exception will be throw upon validation
param
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
protected voidfillFields(org.apache.poi.hssf.record.RecordInputStream in)

        field_1_default_country = in.readShort();
        field_2_current_country = in.readShort();
    
public shortgetCurrentCountry()
gets the current country

return
country ID (1 = US)

        return field_2_current_country;
    
public shortgetDefaultCountry()
gets the default country

return
country ID (1 = US)

        return field_1_default_country;
    
public intgetRecordSize()

        return 8;
    
public shortgetSid()

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

        LittleEndian.putShort(data, 0 + offset, sid);
        LittleEndian.putShort(data, 2 + offset,
                              (( short ) 0x04));   // 4 bytes (8 total)
        LittleEndian.putShort(data, 4 + offset, getDefaultCountry());
        LittleEndian.putShort(data, 6 + offset, getCurrentCountry());
        return getRecordSize();
    
public voidsetCurrentCountry(short country)
sets the current country

param
country ID to set (1 = US)

        field_2_current_country = country;
    
public voidsetDefaultCountry(short country)
sets the default country

param
country ID to set (1 = US)

        field_1_default_country = country;
    
public java.lang.StringtoString()

        StringBuffer buffer = new StringBuffer();

        buffer.append("[COUNTRY]\n");
        buffer.append("    .defaultcountry  = ")
            .append(Integer.toHexString(getDefaultCountry())).append("\n");
        buffer.append("    .currentcountry  = ")
            .append(Integer.toHexString(getCurrentCountry())).append("\n");
        buffer.append("[/COUNTRY]\n");
        return buffer.toString();
    
protected voidvalidateSid(short id)

        if (id != sid)
        {
            throw new RecordFormatException("NOT A Country RECORD");
        }