1 18 package org.apache.batik.svggen.font.table; 19 20 import java.io.IOException ; 21 import java.io.RandomAccessFile ; 22 23 28 public abstract class LigatureSubst extends LookupSubtable { 29 30 public static LigatureSubst read(RandomAccessFile raf, int offset) throws IOException { 31 LigatureSubst ls = null; 32 raf.seek(offset); 33 int format = raf.readUnsignedShort(); 34 if (format == 1) { 35 ls = new LigatureSubstFormat1(raf, offset); 36 } 37 return ls; 38 } 39 40 } 41 | Popular Tags |