1 18 package org.apache.batik.svggen.font.table; 19 20 import java.io.IOException ; 21 import java.io.RandomAccessFile ; 22 23 27 public class FpgmTable extends Program implements Table { 28 29 protected FpgmTable(DirectoryEntry de,RandomAccessFile raf) throws IOException { 30 raf.seek(de.getOffset()); 31 readInstructions(raf, de.getLength()); 32 } 33 34 public int getType() { 35 return fpgm; 36 } 37 } 38 | Popular Tags |