1 package net.sf.tourviewer.lib.ciclo; 2 3 /*** 4 * Stores a block. Ciclo raw files consist of blocks of 40 bytes each. A block 5 * stores stores 8 32-bit values. Each value is encoded as a 4-byte binary coded 6 * (hex)decimal (BCD) value and suplemented by a stop byte. 7 * 8 * @author Steffen Pingel 9 */ 10 public interface Block { 11 12 /*** 13 * Returns the data values. 14 * @return an array of 8 int values 15 */ 16 int[] getData(); 17 18 }