1 17 18 19 20 package org.apache.fop.fonts; 21 22 import java.util.List ; 23 24 27 public class EmbedFontInfo { 28 29 private String metricsFile, embedFile; 30 private boolean kerning; 31 private List fontTriplets; 32 33 40 public EmbedFontInfo(String metricsFile, boolean kerning, 41 List fontTriplets, String embedFile) { 42 this.metricsFile = metricsFile; 43 this.embedFile = embedFile; 44 this.kerning = kerning; 45 this.fontTriplets = fontTriplets; 46 } 47 48 52 public String getMetricsFile() { 53 return metricsFile; 54 } 55 56 60 public String getEmbedFile() { 61 return embedFile; 62 } 63 64 68 public boolean getKerning() { 69 return kerning; 70 } 71 72 76 public List getFontTriplets() { 77 return fontTriplets; 78 } 79 80 } 81 82 | Popular Tags |