KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > opencrx > kernel > generic > cci > DocumentAttachmentFilter


1 // ----------------------------------------------------------------------------
2
// Filter/IntfBegin
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:39:05 CEST 2006
9
//
10
// GENERATED - DO NOT CHANGE MANUALLY
11
//
12
//////////////////////////////////////////////////////////////////////////////
13
package org.opencrx.kernel.generic.cci;
14
15 /**
16  */

17 public interface DocumentAttachmentFilter
18   extends
19   org.opencrx.kernel.base.cci.SecureObjectFilter,
20   org.openmdx.base.cci.BasicObjectFilter {
21      
22 // ----------------------------------------------------------------------------
23
// Filter/IntfAttributeIsNotStruct
24
// ----------------------------------------------------------------------------
25
/**
26    * @param operator The operator for this filter.
27    * @see org.openmdx.compatibility.base.query.FilterOperators
28    */

29   public void forAllDescription (
30     short operator,
31     String JavaDoc[] filterValues
32   );
33
34   /**
35    * @param operator The operator for this filter.
36    * @see org.openmdx.compatibility.base.query.FilterOperators
37    */

38   public void thereExistsDescription (
39     short operator,
40     String JavaDoc[] filterValues
41   );
42
43   /**
44    * @param operator The operator for this filter.
45    * @see org.openmdx.compatibility.base.query.FilterOperators
46    */

47   public void forAllDescription (
48     short operator,
49     java.util.Collection JavaDoc filterValues
50   );
51
52   /**
53    * @param operator The operator for this filter.
54    * @see org.openmdx.compatibility.base.query.FilterOperators
55    */

56   public void thereExistsDescription (
57     short operator,
58     java.util.Collection JavaDoc filterValues
59   );
60
61   /**
62    * Specifies the sort order of all the instances that match the filter criteria.
63    * @param order The sort order for this filter.
64    * @see org.openmdx.compatibility.base.dataprovider.cci.Directions
65    */

66   public void orderByDescription (
67     short order
68   );
69        
70 // ----------------------------------------------------------------------------
71
// Filter/IntfReference
72
// ----------------------------------------------------------------------------
73
/**
74    * @param operator The operator for this filter.
75    * @see org.openmdx.compatibility.base.query.FilterOperators
76    */

77   public void forAllDocument (
78     short operator,
79     org.opencrx.kernel.document1.cci.Document[] filterValues
80   );
81
82   /**
83    * @param operator The operator for this filter.
84    * @see org.openmdx.compatibility.base.query.FilterOperators
85    */

86   public void thereExistsDocument (
87     short operator,
88     org.opencrx.kernel.document1.cci.Document[] filterValues
89   );
90
91   /**
92    * @param operator The operator for this filter.
93    * @see org.openmdx.compatibility.base.query.FilterOperators
94    */

95   public void forAllDocument (
96     short operator,
97     java.util.Collection JavaDoc filterValues
98   );
99
100   /**
101    * @param operator The operator for this filter.
102    * @see org.openmdx.compatibility.base.query.FilterOperators
103    */

104   public void thereExistsDocument (
105     short operator,
106     java.util.Collection JavaDoc filterValues
107   );
108        
109 // ----------------------------------------------------------------------------
110
// Filter/IntfEnd
111
// ----------------------------------------------------------------------------
112
}
113
Popular Tags