KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > opencrx > kernel > depot1 > cci > DepotReportFilter


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:38:56 CEST 2006
9
//
10
// GENERATED - DO NOT CHANGE MANUALLY
11
//
12
//////////////////////////////////////////////////////////////////////////////
13
package org.opencrx.kernel.depot1.cci;
14
15 /**
16  */

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

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

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

47   public void forAllBookingPeriod (
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 thereExistsBookingPeriod (
57     short operator,
58     java.util.Collection JavaDoc filterValues
59   );
60        
61 // ----------------------------------------------------------------------------
62
// Filter/IntfAttributeIsNotStruct
63
// ----------------------------------------------------------------------------
64
/**
65    * @param operator The operator for this filter.
66    * @see org.openmdx.compatibility.base.query.FilterOperators
67    */

68   public void forAllDescription (
69     short operator,
70     String JavaDoc[] filterValues
71   );
72
73   /**
74    * @param operator The operator for this filter.
75    * @see org.openmdx.compatibility.base.query.FilterOperators
76    */

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

86   public void forAllDescription (
87     short operator,
88     java.util.Collection JavaDoc filterValues
89   );
90
91   /**
92    * @param operator The operator for this filter.
93    * @see org.openmdx.compatibility.base.query.FilterOperators
94    */

95   public void thereExistsDescription (
96     short operator,
97     java.util.Collection JavaDoc filterValues
98   );
99
100   /**
101    * Specifies the sort order of all the instances that match the filter criteria.
102    * @param order The sort order for this filter.
103    * @see org.openmdx.compatibility.base.dataprovider.cci.Directions
104    */

105   public void orderByDescription (
106     short order
107   );
108        
109 // ----------------------------------------------------------------------------
110
// Filter/IntfAttributeIsNotStruct
111
// ----------------------------------------------------------------------------
112
/**
113    * @param operator The operator for this filter.
114    * @see org.openmdx.compatibility.base.query.FilterOperators
115    */

116   public void forAllIsDraft (
117     short operator,
118     boolean[] filterValues
119   );
120
121   /**
122    * @param operator The operator for this filter.
123    * @see org.openmdx.compatibility.base.query.FilterOperators
124    */

125   public void thereExistsIsDraft (
126     short operator,
127     boolean[] filterValues
128   );
129
130   /**
131    * @param operator The operator for this filter.
132    * @see org.openmdx.compatibility.base.query.FilterOperators
133    */

134   public void forAllIsDraft (
135     short operator,
136     java.util.Collection JavaDoc filterValues
137   );
138
139   /**
140    * @param operator The operator for this filter.
141    * @see org.openmdx.compatibility.base.query.FilterOperators
142    */

143   public void thereExistsIsDraft (
144     short operator,
145     java.util.Collection JavaDoc filterValues
146   );
147
148   /**
149    * Specifies the sort order of all the instances that match the filter criteria.
150    * @param order The sort order for this filter.
151    * @see org.openmdx.compatibility.base.dataprovider.cci.Directions
152    */

153   public void orderByIsDraft (
154     short order
155   );
156        
157 // ----------------------------------------------------------------------------
158
// Filter/IntfAttributeIsNotStruct
159
// ----------------------------------------------------------------------------
160
/**
161    * @param operator The operator for this filter.
162    * @see org.openmdx.compatibility.base.query.FilterOperators
163    */

164   public void forAllName (
165     short operator,
166     String JavaDoc[] filterValues
167   );
168
169   /**
170    * @param operator The operator for this filter.
171    * @see org.openmdx.compatibility.base.query.FilterOperators
172    */

173   public void thereExistsName (
174     short operator,
175     String JavaDoc[] filterValues
176   );
177
178   /**
179    * @param operator The operator for this filter.
180    * @see org.openmdx.compatibility.base.query.FilterOperators
181    */

182   public void forAllName (
183     short operator,
184     java.util.Collection JavaDoc filterValues
185   );
186
187   /**
188    * @param operator The operator for this filter.
189    * @see org.openmdx.compatibility.base.query.FilterOperators
190    */

191   public void thereExistsName (
192     short operator,
193     java.util.Collection JavaDoc filterValues
194   );
195
196   /**
197    * Specifies the sort order of all the instances that match the filter criteria.
198    * @param order The sort order for this filter.
199    * @see org.openmdx.compatibility.base.dataprovider.cci.Directions
200    */

201   public void orderByName (
202     short order
203   );
204        
205 // ----------------------------------------------------------------------------
206
// Filter/IntfEnd
207
// ----------------------------------------------------------------------------
208
}
209
Popular Tags