1 32 33 package it.businesslogic.ireport; 34 35 39 public class IReportTemplate { 40 41 public final static int COLUMNAR = 0; 42 public final static int TABULAR = 1; 43 44 private String name = ""; 45 private int type = 0; 46 private javax.swing.ImageIcon icon = null; 47 private String xmlFile = null; 48 49 50 51 public IReportTemplate() { 52 } 53 54 public javax.swing.ImageIcon getIcon() { 55 return icon; 56 } 57 58 public void setIcon(javax.swing.ImageIcon icon) { 59 this.icon = icon; 60 } 61 62 public String getName() { 63 return name; 64 } 65 66 public void setName(String name) { 67 this.name = name; 68 } 69 70 public int getType() { 71 return type; 72 } 73 74 public void setType(int type) { 75 this.type = type; 76 } 77 78 public String getXmlFile() { 79 return xmlFile; 80 } 81 82 public void setXmlFile(String xmlFile) { 83 this.xmlFile = xmlFile; 84 } 85 86 public String toString() { 87 return name; 88 } 89 90 } 91 | Popular Tags |