first commit
This commit is contained in:
14
hrmsEjb/jxl/write/biff/EOFRecord.java
Normal file
14
hrmsEjb/jxl/write/biff/EOFRecord.java
Normal file
@@ -0,0 +1,14 @@
|
||||
package jxl.write.biff;
|
||||
|
||||
import jxl.biff.Type;
|
||||
import jxl.biff.WritableRecordData;
|
||||
|
||||
class EOFRecord extends WritableRecordData {
|
||||
public EOFRecord() {
|
||||
super(Type.EOF);
|
||||
}
|
||||
|
||||
public byte[] getData() {
|
||||
return new byte[0];
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user