KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > opencrx > kernel > document1 > cci > MediaFilterImpl


1 // ----------------------------------------------------------------------------
2
// Filter/ImplBegin
3
// ----------------------------------------------------------------------------
4
//////////////////////////////////////////////////////////////////////////////
5
//
6
// Name: $Id: JMIAbstractMapper.java,v 1.11 2006/01/21 23:09:07 wfro Exp $
7
// Generated by: openMDX JMI Mapper
8
// Date: Mon Apr 03 11:38:57 CEST 2006
9
//
10
// GENERATED - DO NOT CHANGE MANUALLY
11
//
12
//////////////////////////////////////////////////////////////////////////////
13
package org.opencrx.kernel.document1.cci;
14
15 public class MediaFilterImpl
16   extends org.openmdx.base.accessor.jmi.spi.RefFilter_1
17   implements MediaFilter {
18
19   public MediaFilterImpl(
20     org.openmdx.base.accessor.jmi.cci.RefPackage_1_0 aPackage
21   ) {
22     super(
23       aPackage,
24       "org:opencrx:kernel:document1:Media",
25       null,
26       null
27     );
28   }
29
30   public MediaFilterImpl(
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:opencrx:kernel:document1:Media",
38       filterProperties,
39       attributeSpecifiers
40     );
41   }
42       
43 // ----------------------------------------------------------------------------
44
// Filter/ImplAttributeIsNotStruct
45
// ----------------------------------------------------------------------------
46
public void forAllContent (
47     short operator,
48     java.util.Collection JavaDoc values
49   ) {
50     refAddValue(
51       "org:opencrx:kernel:document1:Media:content",
52       org.openmdx.compatibility.base.query.Quantors.FOR_ALL,
53       operator,
54       values
55     );
56   }
57
58   public void thereExistsContent (
59     short operator,
60     java.util.Collection JavaDoc values
61   ) {
62     refAddValue(
63       "org:opencrx:kernel:document1:Media:content",
64       org.openmdx.compatibility.base.query.Quantors.THERE_EXISTS,
65       operator,
66       values
67     );
68   }
69
70   public void forAllContent (
71     short operator,
72     byte[][] filterValues
73   ) {
74     java.util.List JavaDoc arrayAsList = new java.util.ArrayList JavaDoc();
75     for(int i = 0; i < filterValues.length; i++) {
76       arrayAsList.add(
77         filterValues[i]
78       );
79     }
80     forAllContent (
81       operator,
82       arrayAsList
83     );
84   }
85
86   public void thereExistsContent (
87     short operator,
88     byte[][] filterValues
89   ) {
90     java.util.List JavaDoc arrayAsList = new java.util.ArrayList JavaDoc();
91     for(int i = 0; i < filterValues.length; i++) {
92       arrayAsList.add(
93         filterValues[i]
94       );
95     }
96     thereExistsContent (
97       operator,
98       arrayAsList
99     );
100   }
101
102   public void orderByContent (
103     short order
104   ) {
105     refAddValue(
106       "org:opencrx:kernel:document1:Media:content",
107       order
108     );
109   }
110       
111 // ----------------------------------------------------------------------------
112
// Filter/ImplAttributeIsNotStruct
113
// ----------------------------------------------------------------------------
114
public void forAllContentLength (
115     short operator,
116     java.util.Collection JavaDoc values
117   ) {
118     refAddValue(
119       "org:opencrx:kernel:document1:Media:contentLength",
120       org.openmdx.compatibility.base.query.Quantors.FOR_ALL,
121       operator,
122       values
123     );
124   }
125
126   public void thereExistsContentLength (
127     short operator,
128     java.util.Collection JavaDoc values
129   ) {
130     refAddValue(
131       "org:opencrx:kernel:document1:Media:contentLength",
132       org.openmdx.compatibility.base.query.Quantors.THERE_EXISTS,
133       operator,
134       values
135     );
136   }
137
138   public void forAllContentLength (
139     short operator,
140     long[] filterValues
141   ) {
142     java.util.List JavaDoc arrayAsList = new java.util.ArrayList JavaDoc();
143     for(int i = 0; i < filterValues.length; i++) {
144       arrayAsList.add(
145         new Long JavaDoc(filterValues[i])
146       );
147     }
148     forAllContentLength (
149       operator,
150       arrayAsList
151     );
152   }
153
154   public void thereExistsContentLength (
155     short operator,
156     long[] filterValues
157   ) {
158     java.util.List JavaDoc arrayAsList = new java.util.ArrayList JavaDoc();
159     for(int i = 0; i < filterValues.length; i++) {
160       arrayAsList.add(
161         new Long JavaDoc(filterValues[i])
162       );
163     }
164     thereExistsContentLength (
165       operator,
166       arrayAsList
167     );
168   }
169
170   public void orderByContentLength (
171     short order
172   ) {
173     refAddValue(
174       "org:opencrx:kernel:document1:Media:contentLength",
175       order
176     );
177   }
178       
179 // ----------------------------------------------------------------------------
180
// Filter/ImplAttributeIsNotStruct
181
// ----------------------------------------------------------------------------
182
public void forAllContentMimeType (
183     short operator,
184     java.util.Collection JavaDoc values
185   ) {
186     refAddValue(
187       "org:opencrx:kernel:document1:Media:contentMimeType",
188       org.openmdx.compatibility.base.query.Quantors.FOR_ALL,
189       operator,
190       values
191     );
192   }
193
194   public void thereExistsContentMimeType (
195     short operator,
196     java.util.Collection JavaDoc values
197   ) {
198     refAddValue(
199       "org:opencrx:kernel:document1:Media:contentMimeType",
200       org.openmdx.compatibility.base.query.Quantors.THERE_EXISTS,
201       operator,
202       values
203     );
204   }
205
206   public void forAllContentMimeType (
207     short operator,
208     String JavaDoc[] filterValues
209   ) {
210     java.util.List JavaDoc arrayAsList = new java.util.ArrayList JavaDoc();
211     for(int i = 0; i < filterValues.length; i++) {
212       arrayAsList.add(
213         filterValues[i]
214       );
215     }
216     forAllContentMimeType (
217       operator,
218       arrayAsList
219     );
220   }
221
222   public void thereExistsContentMimeType (
223     short operator,
224     String JavaDoc[] filterValues
225   ) {
226     java.util.List JavaDoc arrayAsList = new java.util.ArrayList JavaDoc();
227     for(int i = 0; i < filterValues.length; i++) {
228       arrayAsList.add(
229         filterValues[i]
230       );
231     }
232     thereExistsContentMimeType (
233       operator,
234       arrayAsList
235     );
236   }
237
238   public void orderByContentMimeType (
239     short order
240   ) {
241     refAddValue(
242       "org:opencrx:kernel:document1:Media:contentMimeType",
243       order
244     );
245   }
246       
247 // ----------------------------------------------------------------------------
248
// Filter/ImplAttributeIsNotStruct
249
// ----------------------------------------------------------------------------
250
public void forAllContentName (
251     short operator,
252     java.util.Collection JavaDoc values
253   ) {
254     refAddValue(
255       "org:opencrx:kernel:document1:Media:contentName",
256       org.openmdx.compatibility.base.query.Quantors.FOR_ALL,
257       operator,
258       values
259     );
260   }
261
262   public void thereExistsContentName (
263     short operator,
264     java.util.Collection JavaDoc values
265   ) {
266     refAddValue(
267       "org:opencrx:kernel:document1:Media:contentName",
268       org.openmdx.compatibility.base.query.Quantors.THERE_EXISTS,
269       operator,
270       values
271     );
272   }
273
274   public void forAllContentName (
275     short operator,
276     String JavaDoc[] filterValues
277   ) {
278     java.util.List JavaDoc arrayAsList = new java.util.ArrayList JavaDoc();
279     for(int i = 0; i < filterValues.length; i++) {
280       arrayAsList.add(
281         filterValues[i]
282       );
283     }
284     forAllContentName (
285       operator,
286       arrayAsList
287     );
288   }
289
290   public void thereExistsContentName (
291     short operator,
292     String JavaDoc[] filterValues
293   ) {
294     java.util.List JavaDoc arrayAsList = new java.util.ArrayList JavaDoc();
295     for(int i = 0; i < filterValues.length; i++) {
296       arrayAsList.add(
297         filterValues[i]
298       );
299     }
300     thereExistsContentName (
301       operator,
302       arrayAsList
303     );
304   }
305
306   public void orderByContentName (
307     short order
308   ) {
309     refAddValue(
310       "org:opencrx:kernel:document1:Media:contentName",
311       order
312     );
313   }
314       
315 // ----------------------------------------------------------------------------
316
// Filter/ImplAttributeIsNotStruct
317
// ----------------------------------------------------------------------------
318
public void forAllDescription (
319     short operator,
320     java.util.Collection JavaDoc values
321   ) {
322     refAddValue(
323       "org:opencrx:kernel:document1:Media:description",
324       org.openmdx.compatibility.base.query.Quantors.FOR_ALL,
325       operator,
326       values
327     );
328   }
329
330   public void thereExistsDescription (
331     short operator,
332     java.util.Collection JavaDoc values
333   ) {
334     refAddValue(
335       "org:opencrx:kernel:document1:Media:description",
336       org.openmdx.compatibility.base.query.Quantors.THERE_EXISTS,
337       operator,
338       values
339     );
340   }
341
342   public void forAllDescription (
343     short operator,
344     String JavaDoc[] filterValues
345   ) {
346     java.util.List JavaDoc arrayAsList = new java.util.ArrayList JavaDoc();
347     for(int i = 0; i < filterValues.length; i++) {
348       arrayAsList.add(
349         filterValues[i]
350       );
351     }
352     forAllDescription (
353       operator,
354       arrayAsList
355     );
356   }
357
358   public void thereExistsDescription (
359     short operator,
360     String JavaDoc[] filterValues
361   ) {
362     java.util.List JavaDoc arrayAsList = new java.util.ArrayList JavaDoc();
363     for(int i = 0; i < filterValues.length; i++) {
364       arrayAsList.add(
365         filterValues[i]
366       );
367     }
368     thereExistsDescription (
369       operator,
370       arrayAsList
371     );
372   }
373
374   public void orderByDescription (
375     short order
376   ) {
377     refAddValue(
378       "org:opencrx:kernel:document1:Media:description",
379       order
380     );
381   }
382       
383 // ----------------------------------------------------------------------------
384
// Filter/ImplAttributeIsNotStruct
385
// ----------------------------------------------------------------------------
386
public void forAllCreatedAt (
387     short operator,
388     java.util.Collection JavaDoc values
389   ) {
390     refAddValue(
391       "org:openmdx:base:BasicObject:createdAt",
392       org.openmdx.compatibility.base.query.Quantors.FOR_ALL,
393       operator,
394       values
395     );
396   }
397
398   public void thereExistsCreatedAt (
399     short operator,
400     java.util.Collection JavaDoc values
401   ) {
402     refAddValue(
403       "org:openmdx:base:BasicObject:createdAt",
404       org.openmdx.compatibility.base.query.Quantors.THERE_EXISTS,
405       operator,
406       values
407     );
408   }
409
410   public void forAllCreatedAt (
411     short operator,
412     java.util.Date JavaDoc[] filterValues
413   ) {
414     java.util.List JavaDoc arrayAsList = new java.util.ArrayList JavaDoc();
415     for(int i = 0; i < filterValues.length; i++) {
416       arrayAsList.add(
417         filterValues[i]
418       );
419     }
420     forAllCreatedAt (
421       operator,
422       arrayAsList
423     );
424   }
425
426   public void thereExistsCreatedAt (
427     short operator,
428     java.util.Date JavaDoc[] filterValues
429   ) {
430     java.util.List JavaDoc arrayAsList = new java.util.ArrayList JavaDoc();
431     for(int i = 0; i < filterValues.length; i++) {
432       arrayAsList.add(
433         filterValues[i]
434       );
435     }
436     thereExistsCreatedAt (
437       operator,
438       arrayAsList
439     );
440   }
441
442   public void orderByCreatedAt (
443     short order
444   ) {
445     refAddValue(
446       "org:openmdx:base:BasicObject:createdAt",
447       order
448     );
449   }
450       
451 // ----------------------------------------------------------------------------
452
// Filter/ImplAttributeIsNotStruct
453
// ----------------------------------------------------------------------------
454
public void forAllCreatedBy (
455     short operator,
456     java.util.Collection JavaDoc values
457   ) {
458     refAddValue(
459       "org:openmdx:base:BasicObject:createdBy",
460       org.openmdx.compatibility.base.query.Quantors.FOR_ALL,
461       operator,
462       values
463     );
464   }
465
466   public void thereExistsCreatedBy (
467     short operator,
468     java.util.Collection JavaDoc values
469   ) {
470     refAddValue(
471       "org:openmdx:base:BasicObject:createdBy",
472       org.openmdx.compatibility.base.query.Quantors.THERE_EXISTS,
473       operator,
474       values
475     );
476   }
477
478   public void forAllCreatedBy (
479     short operator,
480     String JavaDoc[] filterValues
481   ) {
482     java.util.List JavaDoc arrayAsList = new java.util.ArrayList JavaDoc();
483     for(int i = 0; i < filterValues.length; i++) {
484       arrayAsList.add(
485         filterValues[i]
486       );
487     }
488     forAllCreatedBy (
489       operator,
490       arrayAsList
491     );
492   }
493
494   public void thereExistsCreatedBy (
495     short operator,
496     String JavaDoc[] filterValues
497   ) {
498     java.util.List JavaDoc arrayAsList = new java.util.ArrayList JavaDoc();
499     for(int i = 0; i < filterValues.length; i++) {
500       arrayAsList.add(
501         filterValues[i]
502       );
503     }
504     thereExistsCreatedBy (
505       operator,
506       arrayAsList
507     );
508   }
509
510   public void orderByCreatedBy (
511     short order
512   ) {
513     refAddValue(
514       "org:openmdx:base:BasicObject:createdBy",
515       order
516     );
517   }
518       
519 // ----------------------------------------------------------------------------
520
// Filter/ImplAttributeIsNotStruct
521
// ----------------------------------------------------------------------------
522
public void forAllModifiedAt (
523     short operator,
524     java.util.Collection JavaDoc values
525   ) {
526     refAddValue(
527       "org:openmdx:base:BasicObject:modifiedAt",
528       org.openmdx.compatibility.base.query.Quantors.FOR_ALL,
529       operator,
530       values
531     );
532   }
533
534   public void thereExistsModifiedAt (
535     short operator,
536     java.util.Collection JavaDoc values
537   ) {
538     refAddValue(
539       "org:openmdx:base:BasicObject:modifiedAt",
540       org.openmdx.compatibility.base.query.Quantors.THERE_EXISTS,
541       operator,
542       values
543     );
544   }
545
546   public void forAllModifiedAt (
547     short operator,
548     java.util.Date JavaDoc[] filterValues
549   ) {
550     java.util.List JavaDoc arrayAsList = new java.util.ArrayList JavaDoc();
551     for(int i = 0; i < filterValues.length; i++) {
552       arrayAsList.add(
553         filterValues[i]
554       );
555     }
556     forAllModifiedAt (
557       operator,
558       arrayAsList
559     );
560   }
561
562   public void thereExistsModifiedAt (
563     short operator,
564     java.util.Date JavaDoc[] filterValues
565   ) {
566     java.util.List JavaDoc arrayAsList = new java.util.ArrayList JavaDoc();
567     for(int i = 0; i < filterValues.length; i++) {
568       arrayAsList.add(
569         filterValues[i]
570       );
571     }
572     thereExistsModifiedAt (
573       operator,
574       arrayAsList
575     );
576   }
577
578   public void orderByModifiedAt (
579     short order
580   ) {
581     refAddValue(
582       "org:openmdx:base:BasicObject:modifiedAt",
583       order
584     );
585   }
586       
587 // ----------------------------------------------------------------------------
588
// Filter/ImplAttributeIsNotStruct
589
// ----------------------------------------------------------------------------
590
public void forAllModifiedBy (
591     short operator,
592     java.util.Collection JavaDoc values
593   ) {
594     refAddValue(
595       "org:openmdx:base:BasicObject:modifiedBy",
596       org.openmdx.compatibility.base.query.Quantors.FOR_ALL,
597       operator,
598       values
599     );
600   }
601
602   public void thereExistsModifiedBy (
603     short operator,
604     java.util.Collection JavaDoc values
605   ) {
606     refAddValue(
607       "org:openmdx:base:BasicObject:modifiedBy",
608       org.openmdx.compatibility.base.query.Quantors.THERE_EXISTS,
609       operator,
610       values
611     );
612   }
613
614   public void forAllModifiedBy (
615     short operator,
616     String JavaDoc[] filterValues
617   ) {
618     java.util.List JavaDoc arrayAsList = new java.util.ArrayList JavaDoc();
619     for(int i = 0; i < filterValues.length; i++) {
620       arrayAsList.add(
621         filterValues[i]
622       );
623     }
624     forAllModifiedBy (
625       operator,
626       arrayAsList
627     );
628   }
629
630   public void thereExistsModifiedBy (
631     short operator,
632     String JavaDoc[] filterValues
633   ) {
634     java.util.List JavaDoc arrayAsList = new java.util.ArrayList JavaDoc();
635     for(int i = 0; i < filterValues.length; i++) {
636       arrayAsList.add(
637         filterValues[i]
638       );
639     }
640     thereExistsModifiedBy (
641       operator,
642       arrayAsList
643     );
644   }
645
646   public void orderByModifiedBy (
647     short order
648   ) {
649     refAddValue(
650       "org:openmdx:base:BasicObject:modifiedBy",
651       order
652     );
653   }
654       
655 // ----------------------------------------------------------------------------
656
// Filter/ImplReference
657
// ----------------------------------------------------------------------------
658
public void forAllContext (
659     short operator,
660     org.openmdx.base.cci.Context[] filterValues
661   ) {
662     java.util.List JavaDoc arrayAsList = new java.util.ArrayList JavaDoc();
663     for(int i = 0; i < filterValues.length; i++) {
664       arrayAsList.add(
665         filterValues[i]
666       );
667     }
668     forAllContext (
669       operator,
670       arrayAsList
671     );
672   }
673
674   public void thereExistsContext (
675     short operator,
676     org.openmdx.base.cci.Context[] filterValues
677   ) {
678     java.util.List JavaDoc arrayAsList = new java.util.ArrayList JavaDoc();
679     for(int i = 0; i < filterValues.length; i++) {
680       arrayAsList.add(
681         filterValues[i]
682       );
683     }
684     thereExistsContext (
685       operator,
686       arrayAsList
687     );
688   }
689
690   public void forAllContext (
691     short operator,
692     java.util.Collection JavaDoc values
693   ) {
694     refAddValue(
695       "org:openmdx:base:ContextCapable:context",
696       org.openmdx.compatibility.base.query.Quantors.FOR_ALL,
697       operator,
698       values
699     );
700   }
701
702   public void thereExistsContext (
703     short operator,
704     java.util.Collection JavaDoc values
705   ) {
706     refAddValue(
707       "org:openmdx:base:ContextCapable:context",
708       org.openmdx.compatibility.base.query.Quantors.THERE_EXISTS,
709       operator,
710       values
711     );
712   }
713       
714 // ----------------------------------------------------------------------------
715
// Filter/ImplAttributeIsNotStruct
716
// ----------------------------------------------------------------------------
717
public void forAllIdentity (
718     short operator,
719     java.util.Collection JavaDoc values
720   ) {
721     refAddValue(
722       "org:openmdx:base:ExtentCapable:identity",
723       org.openmdx.compatibility.base.query.Quantors.FOR_ALL,
724       operator,
725       values
726     );
727   }
728
729   public void thereExistsIdentity (
730     short operator,
731     java.util.Collection JavaDoc values
732   ) {
733     refAddValue(
734       "org:openmdx:base:ExtentCapable:identity",
735       org.openmdx.compatibility.base.query.Quantors.THERE_EXISTS,
736       operator,
737       values
738     );
739   }
740
741   public void forAllIdentity (
742     short operator,
743     String JavaDoc[] filterValues
744   ) {
745     java.util.List JavaDoc arrayAsList = new java.util.ArrayList JavaDoc();
746     for(int i = 0; i < filterValues.length; i++) {
747       arrayAsList.add(
748         filterValues[i]
749       );
750     }
751     forAllIdentity (
752       operator,
753       arrayAsList
754     );
755   }
756
757   public void thereExistsIdentity (
758     short operator,
759     String JavaDoc[] filterValues
760   ) {
761     java.util.List JavaDoc arrayAsList = new java.util.ArrayList JavaDoc();
762     for(int i = 0; i < filterValues.length; i++) {
763       arrayAsList.add(
764         filterValues[i]
765       );
766     }
767     thereExistsIdentity (
768       operator,
769       arrayAsList
770     );
771   }
772
773   public void orderByIdentity (
774     short order
775   ) {
776     refAddValue(
777       "org:openmdx:base:ExtentCapable:identity",
778       order
779     );
780   }
781       
782 // ----------------------------------------------------------------------------
783
// Filter/ImplEnd
784
// ----------------------------------------------------------------------------
785
}
786
Popular Tags