18 lines
316 B
Java
18 lines
316 B
Java
package jxl.write.biff;
|
|
|
|
import jxl.biff.Type;
|
|
import jxl.biff.WritableRecordData;
|
|
|
|
class CodepageRecord extends WritableRecordData {
|
|
private byte[] data;
|
|
|
|
public CodepageRecord() {
|
|
super(Type.CODEPAGE);
|
|
this.data = new byte[] { -28, 4 };
|
|
}
|
|
|
|
public byte[] getData() {
|
|
return this.data;
|
|
}
|
|
}
|