KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > opencrx > kernel > model1 > cci > EditableOperationFilter


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

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

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

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

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

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

67   public void orderBySignature (
68     short order
69   );
70        
71 // ----------------------------------------------------------------------------
72
// Filter/IntfEnd
73
// ----------------------------------------------------------------------------
74
}
75
Popular Tags