1 28 package net.sf.jasperreports.engine; 29 30 import net.sf.jasperreports.engine.export.JRExportProgressMonitor; 31 32 33 52 public class JRExporterParameter 53 { 54 55 56 59 private String name = null; 60 61 62 65 protected JRExporterParameter(String name) 66 { 67 this.name = name; 68 } 69 70 71 74 public String toString() 75 { 76 return this.name; 77 } 78 79 80 84 public static final JRExporterParameter JASPER_PRINT = new JRExporterParameter("JasperPrint Object"); 85 86 87 91 public static final JRExporterParameter JASPER_PRINT_LIST = new JRExporterParameter("JasperPrint List"); 92 93 94 98 public static final JRExporterParameter INPUT_STREAM = new JRExporterParameter("InputStream Object"); 99 100 101 105 public static final JRExporterParameter INPUT_URL = new JRExporterParameter("URL Object"); 106 107 108 112 public static final JRExporterParameter INPUT_FILE = new JRExporterParameter("Input File"); 113 114 115 119 public static final JRExporterParameter INPUT_FILE_NAME = new JRExporterParameter("Input File Name"); 120 121 122 125 public static final JRExporterParameter OUTPUT_STRING_BUFFER = new JRExporterParameter("Output StringBuffer Object"); 126 127 128 132 public static final JRExporterParameter OUTPUT_WRITER = new JRExporterParameter("Output Writer Object"); 133 134 135 139 public static final JRExporterParameter OUTPUT_STREAM = new JRExporterParameter("OutputStream Object"); 140 141 142 146 public static final JRExporterParameter OUTPUT_FILE = new JRExporterParameter("Output File"); 147 148 149 152 public static final JRExporterParameter OUTPUT_FILE_NAME = new JRExporterParameter("Output File Name"); 153 154 155 159 public static final JRExporterParameter PAGE_INDEX = new JRExporterParameter("Page Index"); 160 161 162 166 public static final JRExporterParameter START_PAGE_INDEX = new JRExporterParameter("Start Page Index"); 167 168 169 173 public static final JRExporterParameter END_PAGE_INDEX = new JRExporterParameter("End Page Index"); 174 175 176 179 public static final JRExporterParameter CHARACTER_ENCODING = new JRExporterParameter("Character Encoding"); 180 181 182 186 public static final JRExporterParameter PROGRESS_MONITOR = new JRExporterParameter("Progress Monitor"); 187 188 189 193 public static final JRExporterParameter OFFSET_X = new JRExporterParameter("Offset X"); 194 195 196 200 public static final JRExporterParameter OFFSET_Y = new JRExporterParameter("Offset Y"); 201 202 203 206 public static final JRExporterParameter FONT_MAP = new JRExporterParameter("Font Map"); 207 208 209 212 public static final JRExporterParameter CLASS_LOADER = new JRExporterParameter("Class Loader"); 213 214 215 222 public static final JRExporterParameter URL_HANDLER_FACTORY = new JRExporterParameter("URL Handler Factory"); 223 224 } 225 | Popular Tags |