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