1 19 20 package jxl.write.biff; 21 22 import jxl.biff.Type; 23 import jxl.biff.StringHelper; 24 import jxl.biff.WritableRecordData; 25 26 30 class UsesElfsRecord extends WritableRecordData 31 { 32 35 private byte[] data; 36 39 private boolean usesElfs; 40 41 44 public UsesElfsRecord() 45 { 46 super(Type.USESELFS); 47 48 usesElfs = true; 49 50 data = new byte[2]; 51 52 if (usesElfs) 53 { 54 data[0] = 1; 55 } 56 } 57 58 63 public byte[] getData() 64 { 65 return data; 66 } 67 } 68 | Popular Tags |