1 package org.opencrx.kernel.model1.cci; 14 15 17 public interface StructuralFeatureFilter 18 extends 19 org.opencrx.kernel.model1.cci.FeatureFilter, 20 org.opencrx.kernel.model1.cci.TypedElementFilter { 21 22 29 public void forAllIsChangeable ( 30 short operator, 31 boolean[] filterValues 32 ); 33 34 38 public void thereExistsIsChangeable ( 39 short operator, 40 boolean[] filterValues 41 ); 42 43 47 public void forAllIsChangeable ( 48 short operator, 49 java.util.Collection filterValues 50 ); 51 52 56 public void thereExistsIsChangeable ( 57 short operator, 58 java.util.Collection filterValues 59 ); 60 61 66 public void orderByIsChangeable ( 67 short order 68 ); 69 70 77 public void forAllMultiplicity ( 78 short operator, 79 short[] filterValues 80 ); 81 82 86 public void thereExistsMultiplicity ( 87 short operator, 88 short[] filterValues 89 ); 90 91 95 public void forAllMultiplicity ( 96 short operator, 97 java.util.Collection filterValues 98 ); 99 100 104 public void thereExistsMultiplicity ( 105 short operator, 106 java.util.Collection filterValues 107 ); 108 109 114 public void orderByMultiplicity ( 115 short order 116 ); 117 118 125 public void forAllUpperBound ( 126 short operator, 127 int[] filterValues 128 ); 129 130 134 public void thereExistsUpperBound ( 135 short operator, 136 int[] filterValues 137 ); 138 139 143 public void forAllUpperBound ( 144 short operator, 145 java.util.Collection filterValues 146 ); 147 148 152 public void thereExistsUpperBound ( 153 short operator, 154 java.util.Collection filterValues 155 ); 156 157 162 public void orderByUpperBound ( 163 short order 164 ); 165 166 } 170 | Popular Tags |