first commit
This commit is contained in:
17
hrmsEjb/jxl/read/biff/NineteenFourRecord.java
Normal file
17
hrmsEjb/jxl/read/biff/NineteenFourRecord.java
Normal file
@@ -0,0 +1,17 @@
|
||||
package jxl.read.biff;
|
||||
|
||||
import jxl.biff.RecordData;
|
||||
|
||||
class NineteenFourRecord extends RecordData {
|
||||
private boolean nineteenFour;
|
||||
|
||||
public NineteenFourRecord(Record t) {
|
||||
super(t);
|
||||
byte[] data = getRecord().getData();
|
||||
this.nineteenFour = (data[0] == 1);
|
||||
}
|
||||
|
||||
public boolean is1904() {
|
||||
return this.nineteenFour;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user