1 51 package org.apache.fop.render.pdf; 52 53 import org.apache.fop.pdf.PDFWArray; 54 55 public abstract class CIDFont extends Font { 56 57 public abstract String getCidBaseFont(); 59 public abstract byte getCidType(); 60 public abstract String getCharEncoding(); 61 public abstract String getRegistry(); 62 public abstract String getOrdering(); 63 public abstract int getSupplement(); 64 public int getDefaultWidth() { 66 return 0; 67 } 68 69 public PDFWArray getWidths() { 70 return null; 71 } 72 73 75 77 84 public CMap getCMap() { 85 return null; 86 } 87 88 } 89 | Popular Tags |