1 19 20 package jxl.write.biff; 21 22 import jxl.biff.Type; 23 import jxl.biff.WritableRecordData; 24 25 28 class InterfaceHeaderRecord extends WritableRecordData 29 { 30 33 public InterfaceHeaderRecord() 34 { 35 super(Type.INTERFACEHDR); 36 } 37 38 43 public byte[] getData() 44 { 45 byte[] data = new byte[] 47 { (byte) 0xb0, (byte) 0x04}; 48 return data; 49 } 50 } 51 52 53 | Popular Tags |