KickJava   Java API By Example, From Geeks To Geeks.

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


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 ProductConfigurationSet
16   extends org.openmdx.base.accessor.jmi.cci.RefObject_1_0
17  {
18 // ----------------------------------------------------------------------------
19
// Instance/IntfReferenceGet0_1NoQualifier
20
// ----------------------------------------------------------------------------
21
/**
22    * Retrieves the value for the optional reference <code>configType</code>.
23    * @return The possibly null value for this reference.
24    * @exception JmiException If the value cannot be retrieved for some reason.
25    */

26   public org.opencrx.kernel.product1.cci.ProductConfigurationTypeSet getConfigType(
27   );
28
29 // ----------------------------------------------------------------------------
30
// Instance/IntfReferenceGet0_1WithQualifier
31
// ----------------------------------------------------------------------------
32
/**
33    * Retrieves the value for the reference <code>configuration</code> for
34    * the specified qualifier attribute value.
35    * @param id The value for the qualifier attribute that qualifies this reference.
36    * @return The possibly null value for this reference.
37    * @exception JmiException If the value cannot be retrieved for some reason.
38    */

39   public org.opencrx.kernel.product1.cci.ProductConfiguration getConfiguration(
40     String JavaDoc id
41   );
42
43 // ----------------------------------------------------------------------------
44
// Instance/IntfReferenceGet0_nWithFilter
45
// ----------------------------------------------------------------------------
46
/**
47    * Retrieves a collection containing all the elements for the reference
48    * <code>configuration</code>.
49    * @return A collection containing all the elements for this reference.
50    * @exception JmiException If the values cannot be retrieved for some reason.
51    */

52   public java.util.Collection JavaDoc getConfiguration(
53   );
54
55   /**
56    * Retrieves the value for the reference <code>configuration</code> for
57    * the specified filter.
58    * @param filter filter which is applied to the set of referenced objects.
59    * @return The filtered collection of referenced objects.
60    * @exception JmiException If the value cannot be retrieved for some reason.
61    */

62   public java.util.List JavaDoc getConfiguration(
63     org.opencrx.kernel.product1.cci.ProductConfigurationFilter filter
64   );
65
66 // ----------------------------------------------------------------------------
67
// Instance/IntfReferenceAddWithQualifier
68
// ----------------------------------------------------------------------------
69
/**
70    * @param id The qualifier attribute value that qualifies the reference to get the element to be appended.
71    * @param newValue The element to be appended.
72    * @exception JmiException If the value cannot be appended for some reason.
73    */

74   public void addConfiguration (
75     String JavaDoc id,
76     org.opencrx.kernel.product1.cci.ProductConfiguration newValue
77   );
78
79 // ----------------------------------------------------------------------------
80
// Instance/IntfReferenceAddWithoutQualifier
81
// ----------------------------------------------------------------------------
82
/**
83    * @param newValue The element to be appended.
84    * @exception JmiException If the value cannot be appended for some reason.
85    */

86   public void addConfiguration (
87     org.opencrx.kernel.product1.cci.ProductConfiguration newValue
88   );
89
90 // ----------------------------------------------------------------------------
91
// Instance/IntfReferenceRemoveWithQualifier
92
// ----------------------------------------------------------------------------
93
/**
94    * @exception JmiException If the value cannot be removed for some reason.
95    */

96   public void removeConfiguration (
97     String JavaDoc id
98   );
99 // ----------------------------------------------------------------------------
100
// Instance/IntfOperation
101
// ----------------------------------------------------------------------------
102

103   public org.openmdx.base.cci.Void unsetConfigurationType(
104       org.openmdx.base.cci.Void params
105   ) throws javax.jmi.reflect.RefException ;
106
107   /**
108    */

109   public org.openmdx.base.cci.Void unsetConfigurationType(
110   ) throws javax.jmi.reflect.RefException ;
111
112 // ----------------------------------------------------------------------------
113
// Instance/IntfEnd.vm
114
// ----------------------------------------------------------------------------
115
}
116
Popular Tags