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 GposTable implements Table { 29 30 protected GposTable(DirectoryEntry de,RandomAccessFile raf) throws IOException { 31 raf.seek(de.getOffset()); 32 33 raf.readInt(); 35 raf.readInt(); 36 raf.readInt(); 37 raf.readInt(); 38 65 } 66 67 70 public int getType() { 71 return GPOS; 72 } 73 74 public String toString() { 75 return "GPOS"; 76 } 77 78 } 79 | Popular Tags |