您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

CIDFont.java 828B

1234567891011121314151617181920212223242526272829
  1. package org.apache.fop.render.pdf;
  2. import org.apache.fop.pdf.PDFWArray;
  3. public abstract class CIDFont extends Font {
  4. // Required
  5. public abstract String getCidBaseFont();
  6. public abstract byte getCidType();
  7. public abstract String getCharEncoding();
  8. public abstract String getRegistry();
  9. public abstract String getOrdering();
  10. public abstract int getSupplement();
  11. // Optional
  12. public int getDefaultWidth() { return 0; }
  13. public PDFWArray getWidths() { return null; }
  14. // public int getWinCharSet() { return 0; }
  15. // Need For FOP
  16. /**
  17. *Returns CMap Object .
  18. *<p>
  19. *If this method does not return null , the mapping from character codes
  20. *to a font number is performed in FOP . When the getCidType() method
  21. *returns CIDFontType2 , this method must not return null .
  22. */
  23. public CMap getCMap() { return null; }
  24. }