1 28 package net.sf.jasperreports.engine.design; 29 30 import net.sf.jasperreports.engine.JRConstants; 31 import net.sf.jasperreports.engine.JRReportFont; 32 33 34 38 public class JRDesignReportFont extends JRDesignFont implements JRReportFont 39 { 40 41 42 45 private static final long serialVersionUID = JRConstants.SERIAL_VERSION_UID; 46 47 50 protected String name = null; 51 protected boolean isDefault = false; 52 53 54 57 public String getName() 58 { 59 return this.name; 60 } 61 62 65 public boolean isDefault() 66 { 67 return this.isDefault; 68 } 69 70 73 public void setName(String name) 74 { 75 this.name = name; 76 } 77 78 81 public void setDefault(boolean isDefault) 82 { 83 this.isDefault = isDefault; 84 } 85 86 87 } 88 | Popular Tags |