package org.apache.fop.render.pdf.fonts; import org.apache.fop.render.pdf.Font; public class extends Font { private final static String fontName = ""; private final static String encoding = ""; private final static int capHeight = ; private final static int xHeight = ; private final static int ascender = ; private final static int descender = ; private final static int[] width; static { width = new int[256]; width[] = ; } public String encoding() { return encoding; } public String fontName() { return fontName; } public int getAscender() { return ascender; } public int getCapHeight() { return capHeight; } public int getDescender() { return descender; } public int getXHeight() { return xHeight; } public int width(int i) { return width[i]; } }