1 package org.opencrx.kernel.model1.cci; 14 15 17 public interface AssociationEndFilter 18 extends 19 org.opencrx.kernel.model1.cci.TypedElementFilter { 20 21 28 public void forAllAggregation ( 29 short operator, 30 short[] filterValues 31 ); 32 33 37 public void thereExistsAggregation ( 38 short operator, 39 short[] filterValues 40 ); 41 42 46 public void forAllAggregation ( 47 short operator, 48 java.util.Collection filterValues 49 ); 50 51 55 public void thereExistsAggregation ( 56 short operator, 57 java.util.Collection filterValues 58 ); 59 60 65 public void orderByAggregation ( 66 short order 67 ); 68 69 76 public void forAllIsChangeable ( 77 short operator, 78 boolean[] filterValues 79 ); 80 81 85 public void thereExistsIsChangeable ( 86 short operator, 87 boolean[] filterValues 88 ); 89 90 94 public void forAllIsChangeable ( 95 short operator, 96 java.util.Collection filterValues 97 ); 98 99 103 public void thereExistsIsChangeable ( 104 short operator, 105 java.util.Collection filterValues 106 ); 107 108 113 public void orderByIsChangeable ( 114 short order 115 ); 116 117 124 public void forAllIsNavigable ( 125 short operator, 126 boolean[] filterValues 127 ); 128 129 133 public void thereExistsIsNavigable ( 134 short operator, 135 boolean[] filterValues 136 ); 137 138 142 public void forAllIsNavigable ( 143 short operator, 144 java.util.Collection filterValues 145 ); 146 147 151 public void thereExistsIsNavigable ( 152 short operator, 153 java.util.Collection filterValues 154 ); 155 156 161 public void orderByIsNavigable ( 162 short order 163 ); 164 165 172 public void forAllMultiplicity ( 173 short operator, 174 short[] filterValues 175 ); 176 177 181 public void thereExistsMultiplicity ( 182 short operator, 183 short[] filterValues 184 ); 185 186 190 public void forAllMultiplicity ( 191 short operator, 192 java.util.Collection filterValues 193 ); 194 195 199 public void thereExistsMultiplicity ( 200 short operator, 201 java.util.Collection filterValues 202 ); 203 204 209 public void orderByMultiplicity ( 210 short order 211 ); 212 213 220 public void forAllQualifierName ( 221 short operator, 222 String [] filterValues 223 ); 224 225 229 public void thereExistsQualifierName ( 230 short operator, 231 String [] filterValues 232 ); 233 234 238 public void forAllQualifierName ( 239 short operator, 240 java.util.Collection filterValues 241 ); 242 243 247 public void thereExistsQualifierName ( 248 short operator, 249 java.util.Collection filterValues 250 ); 251 252 257 public void orderByQualifierName ( 258 short order 259 ); 260 261 268 public void forAllQualifierType ( 269 short operator, 270 org.opencrx.kernel.model1.cci.Classifier[] filterValues 271 ); 272 273 277 public void thereExistsQualifierType ( 278 short operator, 279 org.opencrx.kernel.model1.cci.Classifier[] filterValues 280 ); 281 282 286 public void forAllQualifierType ( 287 short operator, 288 java.util.Collection filterValues 289 ); 290 291 295 public void thereExistsQualifierType ( 296 short operator, 297 java.util.Collection filterValues 298 ); 299 300 307 public void forAllUpperBound ( 308 short operator, 309 int[] filterValues 310 ); 311 312 316 public void thereExistsUpperBound ( 317 short operator, 318 int[] filterValues 319 ); 320 321 325 public void forAllUpperBound ( 326 short operator, 327 java.util.Collection filterValues 328 ); 329 330 334 public void thereExistsUpperBound ( 335 short operator, 336 java.util.Collection filterValues 337 ); 338 339 344 public void orderByUpperBound ( 345 short order 346 ); 347 348 } 352 | Popular Tags |