1 package org.opencrx.kernel.activity1.cci; 14 15 17 public interface ActivityTrackerFilter 18 extends 19 org.opencrx.kernel.activity1.cci.ActivityGroupFilter, 20 org.opencrx.kernel.generic.cci.CrxObjectFilter { 21 22 29 public void forAllEstimateEffortHours ( 30 short operator, 31 int[] filterValues 32 ); 33 34 38 public void thereExistsEstimateEffortHours ( 39 short operator, 40 int[] filterValues 41 ); 42 43 47 public void forAllEstimateEffortHours ( 48 short operator, 49 java.util.Collection filterValues 50 ); 51 52 56 public void thereExistsEstimateEffortHours ( 57 short operator, 58 java.util.Collection filterValues 59 ); 60 61 66 public void orderByEstimateEffortHours ( 67 short order 68 ); 69 70 77 public void forAllEstimateEffortMinutes ( 78 short operator, 79 int[] filterValues 80 ); 81 82 86 public void thereExistsEstimateEffortMinutes ( 87 short operator, 88 int[] filterValues 89 ); 90 91 95 public void forAllEstimateEffortMinutes ( 96 short operator, 97 java.util.Collection filterValues 98 ); 99 100 104 public void thereExistsEstimateEffortMinutes ( 105 short operator, 106 java.util.Collection filterValues 107 ); 108 109 114 public void orderByEstimateEffortMinutes ( 115 short order 116 ); 117 118 125 public void forAllEstimateMaxDeviation ( 126 short operator, 127 int[] filterValues 128 ); 129 130 134 public void thereExistsEstimateMaxDeviation ( 135 short operator, 136 int[] filterValues 137 ); 138 139 143 public void forAllEstimateMaxDeviation ( 144 short operator, 145 java.util.Collection filterValues 146 ); 147 148 152 public void thereExistsEstimateMaxDeviation ( 153 short operator, 154 java.util.Collection filterValues 155 ); 156 157 162 public void orderByEstimateMaxDeviation ( 163 short order 164 ); 165 166 173 public void forAllSumEstimateEffortHours ( 174 short operator, 175 int[] filterValues 176 ); 177 178 182 public void thereExistsSumEstimateEffortHours ( 183 short operator, 184 int[] filterValues 185 ); 186 187 191 public void forAllSumEstimateEffortHours ( 192 short operator, 193 java.util.Collection filterValues 194 ); 195 196 200 public void thereExistsSumEstimateEffortHours ( 201 short operator, 202 java.util.Collection filterValues 203 ); 204 205 210 public void orderBySumEstimateEffortHours ( 211 short order 212 ); 213 214 221 public void forAllSumEstimateEffortMinutes ( 222 short operator, 223 int[] filterValues 224 ); 225 226 230 public void thereExistsSumEstimateEffortMinutes ( 231 short operator, 232 int[] filterValues 233 ); 234 235 239 public void forAllSumEstimateEffortMinutes ( 240 short operator, 241 java.util.Collection filterValues 242 ); 243 244 248 public void thereExistsSumEstimateEffortMinutes ( 249 short operator, 250 java.util.Collection filterValues 251 ); 252 253 258 public void orderBySumEstimateEffortMinutes ( 259 short order 260 ); 261 262 269 public void forAllWelcome ( 270 short operator, 271 String [] filterValues 272 ); 273 274 278 public void thereExistsWelcome ( 279 short operator, 280 String [] filterValues 281 ); 282 283 287 public void forAllWelcome ( 288 short operator, 289 java.util.Collection filterValues 290 ); 291 292 296 public void thereExistsWelcome ( 297 short operator, 298 java.util.Collection filterValues 299 ); 300 301 306 public void orderByWelcome ( 307 short order 308 ); 309 310 } 314 | Popular Tags |