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 CmapFormat6 extends CmapFormat { 28 29 private short format; 30 private short length; 31 private short version; 32 private short firstCode; 33 private short entryCount; 34 private short[] glyphIdArray; 35 36 protected CmapFormat6(RandomAccessFile raf) throws IOException { 37 super(raf); 38 format = 6; 39 } 40 41 public int getFirst() { return 0; } 42 public int getLast() { return 0; } 43 44 public int mapCharCode(int charCode) { 45 return 0; 46 } 47 } 48 | Popular Tags |