1 package org.opencrx.kernel.activity1.cci; 14 15 17 public interface IncidentFilter 18 extends 19 org.opencrx.kernel.activity1.cci.ActivityFilter, 20 org.opencrx.kernel.generic.cci.CrxObjectFilter { 21 22 29 public void forAllCaseOrigin ( 30 short operator, 31 short[] filterValues 32 ); 33 34 38 public void thereExistsCaseOrigin ( 39 short operator, 40 short[] filterValues 41 ); 42 43 47 public void forAllCaseOrigin ( 48 short operator, 49 java.util.Collection filterValues 50 ); 51 52 56 public void thereExistsCaseOrigin ( 57 short operator, 58 java.util.Collection filterValues 59 ); 60 61 66 public void orderByCaseOrigin ( 67 short order 68 ); 69 70 77 public void forAllCaseType ( 78 short operator, 79 short[] filterValues 80 ); 81 82 86 public void thereExistsCaseType ( 87 short operator, 88 short[] filterValues 89 ); 90 91 95 public void forAllCaseType ( 96 short operator, 97 java.util.Collection filterValues 98 ); 99 100 104 public void thereExistsCaseType ( 105 short operator, 106 java.util.Collection filterValues 107 ); 108 109 114 public void orderByCaseType ( 115 short order 116 ); 117 118 125 public void forAllCustomerSatisfaction ( 126 short operator, 127 short[] filterValues 128 ); 129 130 134 public void thereExistsCustomerSatisfaction ( 135 short operator, 136 short[] filterValues 137 ); 138 139 143 public void forAllCustomerSatisfaction ( 144 short operator, 145 java.util.Collection filterValues 146 ); 147 148 152 public void thereExistsCustomerSatisfaction ( 153 short operator, 154 java.util.Collection filterValues 155 ); 156 157 162 public void orderByCustomerSatisfaction ( 163 short order 164 ); 165 166 173 public void forAllReproducibility ( 174 short operator, 175 short[] filterValues 176 ); 177 178 182 public void thereExistsReproducibility ( 183 short operator, 184 short[] filterValues 185 ); 186 187 191 public void forAllReproducibility ( 192 short operator, 193 java.util.Collection filterValues 194 ); 195 196 200 public void thereExistsReproducibility ( 201 short operator, 202 java.util.Collection filterValues 203 ); 204 205 210 public void orderByReproducibility ( 211 short order 212 ); 213 214 221 public void forAllSeverity ( 222 short operator, 223 short[] filterValues 224 ); 225 226 230 public void thereExistsSeverity ( 231 short operator, 232 short[] filterValues 233 ); 234 235 239 public void forAllSeverity ( 240 short operator, 241 java.util.Collection filterValues 242 ); 243 244 248 public void thereExistsSeverity ( 249 short operator, 250 java.util.Collection filterValues 251 ); 252 253 258 public void orderBySeverity ( 259 short order 260 ); 261 262 } 266 | Popular Tags |