1 51 package org.apache.fop.configuration; 52 53 56 57 58 public class FontTriplet { 59 private String name, weight, style; 60 public FontTriplet(String name, String weight, String style) { 61 this.name = name; 62 this.weight = weight; 63 this.style = style; 64 } 65 66 public String getName() { 67 return name; 68 } 69 70 public String getWeight() { 71 return weight; 72 } 73 74 public String getStyle() { 75 return style; 76 } 77 78 } 79 80 81 82 83 | Popular Tags |