1 28 package net.sf.jasperreports.engine; 29 30 31 35 public interface JRParameter 36 { 37 38 39 42 public static final String REPORT_PARAMETERS_MAP = "REPORT_PARAMETERS_MAP"; 43 44 45 48 public static final String REPORT_CONNECTION = "REPORT_CONNECTION"; 49 50 51 54 public static final String REPORT_MAX_COUNT = "REPORT_MAX_COUNT"; 55 56 57 61 public static final String REPORT_DATA_SOURCE = "REPORT_DATA_SOURCE"; 62 63 64 67 public static final String REPORT_SCRIPTLET = "REPORT_SCRIPTLET"; 68 69 70 74 public static final String REPORT_LOCALE = "REPORT_LOCALE"; 75 76 77 81 public static final String REPORT_RESOURCE_BUNDLE = "REPORT_RESOURCE_BUNDLE"; 82 83 84 87 public static final String REPORT_TIME_ZONE = "REPORT_TIME_ZONE"; 88 89 90 93 public static final String REPORT_VIRTUALIZER = "REPORT_VIRTUALIZER"; 94 95 96 100 public static final String REPORT_CLASS_LOADER = "REPORT_CLASS_LOADER"; 101 102 103 107 public static final String REPORT_URL_HANDLER_FACTORY = "REPORT_URL_HANDLER_FACTORY"; 108 109 110 115 public static final String REPORT_FORMAT_FACTORY = "REPORT_DATE_FORMAT_FACTORY"; 116 117 118 123 public static final String IS_IGNORE_PAGINATION = "IS_IGNORE_PAGINATION"; 124 125 126 129 public String getName(); 130 131 134 public String getDescription(); 135 136 139 public void setDescription(String description); 140 141 144 public Class getValueClass(); 145 146 149 public String getValueClassName(); 150 151 154 public boolean isSystemDefined(); 155 156 159 public boolean isForPrompting(); 160 161 164 public JRExpression getDefaultValueExpression(); 165 166 167 } 168 | Popular Tags |