1 package org.openmdx.filter1.cci; 14 15 public class UriPropertyFilterImpl 16 extends org.openmdx.base.accessor.jmi.spi.RefFilter_1 17 implements UriPropertyFilter { 18 19 public UriPropertyFilterImpl( 20 org.openmdx.base.accessor.jmi.cci.RefPackage_1_0 aPackage 21 ) { 22 super( 23 aPackage, 24 "org:openmdx:filter1:UriProperty", 25 null, 26 null 27 ); 28 } 29 30 public UriPropertyFilterImpl( 31 org.openmdx.base.accessor.jmi.cci.RefPackage_1_0 aPackage, 32 org.openmdx.compatibility.base.query.FilterProperty[] filterProperties, 33 org.openmdx.compatibility.base.dataprovider.cci.AttributeSpecifier[] attributeSpecifiers 34 ) { 35 super( 36 aPackage, 37 "org:openmdx:filter1:UriProperty", 38 filterProperties, 39 attributeSpecifiers 40 ); 41 } 42 43 public void forAllName ( 47 short operator, 48 java.util.Collection values 49 ) { 50 refAddValue( 51 "org:openmdx:filter1:Property:name", 52 org.openmdx.compatibility.base.query.Quantors.FOR_ALL, 53 operator, 54 values 55 ); 56 } 57 58 public void thereExistsName ( 59 short operator, 60 java.util.Collection values 61 ) { 62 refAddValue( 63 "org:openmdx:filter1:Property:name", 64 org.openmdx.compatibility.base.query.Quantors.THERE_EXISTS, 65 operator, 66 values 67 ); 68 } 69 70 public void forAllName ( 71 short operator, 72 String [] filterValues 73 ) { 74 java.util.List arrayAsList = new java.util.ArrayList (); 75 for(int i = 0; i < filterValues.length; i++) { 76 arrayAsList.add( 77 filterValues[i] 78 ); 79 } 80 forAllName ( 81 operator, 82 arrayAsList 83 ); 84 } 85 86 public void thereExistsName ( 87 short operator, 88 String [] filterValues 89 ) { 90 java.util.List arrayAsList = new java.util.ArrayList (); 91 for(int i = 0; i < filterValues.length; i++) { 92 arrayAsList.add( 93 filterValues[i] 94 ); 95 } 96 thereExistsName ( 97 operator, 98 arrayAsList 99 ); 100 } 101 102 public void orderByName ( 103 short order 104 ) { 105 refAddValue( 106 "org:openmdx:filter1:Property:name", 107 order 108 ); 109 } 110 111 public void forAllOperator ( 115 short operator, 116 java.util.Collection values 117 ) { 118 refAddValue( 119 "org:openmdx:filter1:Property:operator", 120 org.openmdx.compatibility.base.query.Quantors.FOR_ALL, 121 operator, 122 values 123 ); 124 } 125 126 public void thereExistsOperator ( 127 short operator, 128 java.util.Collection values 129 ) { 130 refAddValue( 131 "org:openmdx:filter1:Property:operator", 132 org.openmdx.compatibility.base.query.Quantors.THERE_EXISTS, 133 operator, 134 values 135 ); 136 } 137 138 public void forAllOperator ( 139 short operator, 140 short[] filterValues 141 ) { 142 java.util.List arrayAsList = new java.util.ArrayList (); 143 for(int i = 0; i < filterValues.length; i++) { 144 arrayAsList.add( 145 new Short (filterValues[i]) 146 ); 147 } 148 forAllOperator ( 149 operator, 150 arrayAsList 151 ); 152 } 153 154 public void thereExistsOperator ( 155 short operator, 156 short[] filterValues 157 ) { 158 java.util.List arrayAsList = new java.util.ArrayList (); 159 for(int i = 0; i < filterValues.length; i++) { 160 arrayAsList.add( 161 new Short (filterValues[i]) 162 ); 163 } 164 thereExistsOperator ( 165 operator, 166 arrayAsList 167 ); 168 } 169 170 public void orderByOperator ( 171 short order 172 ) { 173 refAddValue( 174 "org:openmdx:filter1:Property:operator", 175 order 176 ); 177 } 178 179 public void forAllQuantor ( 183 short operator, 184 java.util.Collection values 185 ) { 186 refAddValue( 187 "org:openmdx:filter1:Property:quantor", 188 org.openmdx.compatibility.base.query.Quantors.FOR_ALL, 189 operator, 190 values 191 ); 192 } 193 194 public void thereExistsQuantor ( 195 short operator, 196 java.util.Collection values 197 ) { 198 refAddValue( 199 "org:openmdx:filter1:Property:quantor", 200 org.openmdx.compatibility.base.query.Quantors.THERE_EXISTS, 201 operator, 202 values 203 ); 204 } 205 206 public void forAllQuantor ( 207 short operator, 208 short[] filterValues 209 ) { 210 java.util.List arrayAsList = new java.util.ArrayList (); 211 for(int i = 0; i < filterValues.length; i++) { 212 arrayAsList.add( 213 new Short (filterValues[i]) 214 ); 215 } 216 forAllQuantor ( 217 operator, 218 arrayAsList 219 ); 220 } 221 222 public void thereExistsQuantor ( 223 short operator, 224 short[] filterValues 225 ) { 226 java.util.List arrayAsList = new java.util.ArrayList (); 227 for(int i = 0; i < filterValues.length; i++) { 228 arrayAsList.add( 229 new Short (filterValues[i]) 230 ); 231 } 232 thereExistsQuantor ( 233 operator, 234 arrayAsList 235 ); 236 } 237 238 public void orderByQuantor ( 239 short order 240 ) { 241 refAddValue( 242 "org:openmdx:filter1:Property:quantor", 243 order 244 ); 245 } 246 247 public void forAllValue ( 251 short operator, 252 java.util.Collection values 253 ) { 254 refAddValue( 255 "org:openmdx:filter1:UriProperty:value", 256 org.openmdx.compatibility.base.query.Quantors.FOR_ALL, 257 operator, 258 values 259 ); 260 } 261 262 public void thereExistsValue ( 263 short operator, 264 java.util.Collection values 265 ) { 266 refAddValue( 267 "org:openmdx:filter1:UriProperty:value", 268 org.openmdx.compatibility.base.query.Quantors.THERE_EXISTS, 269 operator, 270 values 271 ); 272 } 273 274 public void forAllValue ( 275 short operator, 276 String [] filterValues 277 ) { 278 java.util.List arrayAsList = new java.util.ArrayList (); 279 for(int i = 0; i < filterValues.length; i++) { 280 arrayAsList.add( 281 filterValues[i] 282 ); 283 } 284 forAllValue ( 285 operator, 286 arrayAsList 287 ); 288 } 289 290 public void thereExistsValue ( 291 short operator, 292 String [] filterValues 293 ) { 294 java.util.List arrayAsList = new java.util.ArrayList (); 295 for(int i = 0; i < filterValues.length; i++) { 296 arrayAsList.add( 297 filterValues[i] 298 ); 299 } 300 thereExistsValue ( 301 operator, 302 arrayAsList 303 ); 304 } 305 306 public void orderByValue ( 307 short order 308 ) { 309 refAddValue( 310 "org:openmdx:filter1:UriProperty:value", 311 order 312 ); 313 } 314 315 } 319 | Popular Tags |