1 19 20 package jxl.write.biff; 21 22 import jxl.biff.Type; 23 import jxl.biff.IntegerHelper; 24 import jxl.biff.StringHelper; 25 import jxl.biff.WritableRecordData; 26 27 30 class IterationRecord extends WritableRecordData 31 { 32 35 private boolean iterate; 36 39 private byte[] data; 40 41 46 public IterationRecord(boolean it) 47 { 48 super(Type.ITERATION); 49 50 iterate = it; 51 52 data = new byte[2]; 53 54 if (iterate) 55 { 56 data[0] = 1; 57 } 58 } 59 60 65 public byte[] getData() 66 { 67 return data; 68 } 69 } 70 71 72 | Popular Tags |