KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > opencrx > kernel > activity1 > cci > MailingFilter


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

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

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

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

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

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

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

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

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

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

103   public void thereExistsSender (
104     short operator,
105     java.util.Collection JavaDoc filterValues
106   );
107        
108 // ----------------------------------------------------------------------------
109
// Filter/IntfAttributeIsNotStruct
110
// ----------------------------------------------------------------------------
111
/**
112    * @param operator The operator for this filter.
113    * @see org.openmdx.compatibility.base.query.FilterOperators
114    */

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

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

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

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

152   public void orderByTemplate (
153     short order
154   );
155        
156 // ----------------------------------------------------------------------------
157
// Filter/IntfEnd
158
// ----------------------------------------------------------------------------
159
}
160
Popular Tags