1 18 package org.apache.batik.svggen.font.table; 19 20 import java.io.IOException ; 21 import java.io.RandomAccessFile ; 22 23 28 public class LangSysRecord { 29 30 private int tag; 31 private int offset; 32 33 34 public LangSysRecord(RandomAccessFile raf) throws IOException { 35 tag = raf.readInt(); 36 offset = raf.readUnsignedShort(); 37 } 38 39 public int getTag() { 40 return tag; 41 } 42 43 public int getOffset() { 44 return offset; 45 } 46 47 } 48 | Popular Tags |