KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > opencrx > kernel > product1 > cci > AbstractFilterProduct


1 // ----------------------------------------------------------------------------
2
// Instance/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:51 CEST 2006
9
//
10
// GENERATED - DO NOT CHANGE MANUALLY
11
//
12
//////////////////////////////////////////////////////////////////////////////
13
package org.opencrx.kernel.product1.cci;
14
15 public interface AbstractFilterProduct
16   extends
17  org.opencrx.kernel.base.cci.AbstractFilter {
18 // ----------------------------------------------------------------------------
19
// Instance/IntfReferenceGet0_1WithQualifier
20
// ----------------------------------------------------------------------------
21
/**
22    * Retrieves the value for the reference <code>filteredProduct</code> for
23    * the specified qualifier attribute value.
24    * @param id The value for the qualifier attribute that qualifies this reference.
25    * @return The possibly null value for this reference.
26    * @exception JmiException If the value cannot be retrieved for some reason.
27    */

28   public org.opencrx.kernel.product1.cci.AbstractProduct getFilteredProduct(
29     String JavaDoc id
30   );
31
32 // ----------------------------------------------------------------------------
33
// Instance/IntfReferenceGet0_nWithFilter
34
// ----------------------------------------------------------------------------
35
/**
36    * Retrieves a collection containing all the elements for the reference
37    * <code>filteredProduct</code>.
38    * @return A collection containing all the elements for this reference.
39    * @exception JmiException If the values cannot be retrieved for some reason.
40    */

41   public java.util.Collection JavaDoc getFilteredProduct(
42   );
43
44   /**
45    * Retrieves the value for the reference <code>filteredProduct</code> for
46    * the specified filter.
47    * @param filter filter which is applied to the set of referenced objects.
48    * @return The filtered collection of referenced objects.
49    * @exception JmiException If the value cannot be retrieved for some reason.
50    */

51   public java.util.List JavaDoc getFilteredProduct(
52     org.opencrx.kernel.product1.cci.AbstractProductFilter filter
53   );
54
55 // ----------------------------------------------------------------------------
56
// Instance/IntfReferenceGet0_1WithQualifier
57
// ----------------------------------------------------------------------------
58
/**
59    * Retrieves the value for the reference
60    * <code>productFilterProperty</code> for the specified qualifier
61    * attribute value.
62    * @param id The value for the qualifier attribute that qualifies this reference.
63    * @return The possibly null value for this reference.
64    * @exception JmiException If the value cannot be retrieved for some reason.
65    */

66   public org.opencrx.kernel.product1.cci.ProductFilterProperty getProductFilterProperty(
67     String JavaDoc id
68   );
69
70 // ----------------------------------------------------------------------------
71
// Instance/IntfReferenceGet0_nWithFilter
72
// ----------------------------------------------------------------------------
73
/**
74    * Retrieves a collection containing all the elements for the reference
75    * <code>productFilterProperty</code>.
76    * @return A collection containing all the elements for this reference.
77    * @exception JmiException If the values cannot be retrieved for some reason.
78    */

79   public java.util.Collection JavaDoc getProductFilterProperty(
80   );
81
82   /**
83    * Retrieves the value for the reference
84    * <code>productFilterProperty</code> for the specified filter.
85    * @param filter filter which is applied to the set of referenced objects.
86    * @return The filtered collection of referenced objects.
87    * @exception JmiException If the value cannot be retrieved for some reason.
88    */

89   public java.util.List JavaDoc getProductFilterProperty(
90     org.opencrx.kernel.product1.cci.ProductFilterPropertyFilter filter
91   );
92
93 // ----------------------------------------------------------------------------
94
// Instance/IntfReferenceAddWithQualifier
95
// ----------------------------------------------------------------------------
96
/**
97    * @param id The qualifier attribute value that qualifies the reference to get the element to be appended.
98    * @param newValue The element to be appended.
99    * @exception JmiException If the value cannot be appended for some reason.
100    */

101   public void addProductFilterProperty (
102     String JavaDoc id,
103     org.opencrx.kernel.product1.cci.ProductFilterProperty newValue
104   );
105
106 // ----------------------------------------------------------------------------
107
// Instance/IntfReferenceAddWithoutQualifier
108
// ----------------------------------------------------------------------------
109
/**
110    * @param newValue The element to be appended.
111    * @exception JmiException If the value cannot be appended for some reason.
112    */

113   public void addProductFilterProperty (
114     org.opencrx.kernel.product1.cci.ProductFilterProperty newValue
115   );
116
117 // ----------------------------------------------------------------------------
118
// Instance/IntfReferenceRemoveWithQualifier
119
// ----------------------------------------------------------------------------
120
/**
121    * @exception JmiException If the value cannot be removed for some reason.
122    */

123   public void removeProductFilterProperty (
124     String JavaDoc id
125   );
126 // ----------------------------------------------------------------------------
127
// Instance/IntfEnd.vm
128
// ----------------------------------------------------------------------------
129
}
130
Popular Tags