KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > opencrx > kernel > reservation1 > cci > Part


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:39:06 CEST 2006
9
//
10
// GENERATED - DO NOT CHANGE MANUALLY
11
//
12
//////////////////////////////////////////////////////////////////////////////
13
package org.opencrx.kernel.reservation1.cci;
14
15 public interface Part
16   extends
17  org.opencrx.kernel.generic.cci.CrxObject,
18  org.opencrx.kernel.generic.cci.DescriptionContainer {
19 // ----------------------------------------------------------------------------
20
// Instance/IntfAttributeGet0_1
21
// ----------------------------------------------------------------------------
22
/**
23    * @return The possibly null value for attribute <code>description</code>.
24    * @exception JmiException If the value cannot be retrieved for some reason.
25    */

26   public String JavaDoc getDescription(
27   );
28
29 // ----------------------------------------------------------------------------
30
// Instance/IntfAttributeSet0_1
31
// ----------------------------------------------------------------------------
32

33
34   /**
35    * Sets a new value for the attribute <code>description</code>.
36    * @param newValue The possibly null new value for attribute <code>description</code>.
37    * @exception JmiException If the value cannot be set for some reason.
38    */

39   public void setDescription(
40     String JavaDoc newValue
41   );
42
43 // ----------------------------------------------------------------------------
44
// Instance/IntfAttributeGet1_1
45
// ----------------------------------------------------------------------------
46
/**
47    * Retrieves the value for the attribute <code>filling</code>.
48    * @return The non-null value for attribute <code>filling</code>.
49    * @exception JmiException If the value cannot be retrieved for some reason.
50    */

51   public String JavaDoc getFilling(
52   );
53
54 // ----------------------------------------------------------------------------
55
// Instance/IntfAttributeSet1_1
56
// ----------------------------------------------------------------------------
57
/**
58    * Sets a new value for the attribute <code>filling</code>.
59    * @param newValue The non-null new value for attribute <code>filling</code>.
60    * @exception JmiException If the value cannot be set for some reason.
61    */

62   public void setFilling(
63     String JavaDoc newValue
64   );
65
66 // ----------------------------------------------------------------------------
67
// Instance/IntfAttributeGet1_1
68
// ----------------------------------------------------------------------------
69
/**
70    * Retrieves the value for the attribute <code>name</code>.
71    * @return The non-null value for attribute <code>name</code>.
72    * @exception JmiException If the value cannot be retrieved for some reason.
73    */

74   public String JavaDoc getName(
75   );
76
77 // ----------------------------------------------------------------------------
78
// Instance/IntfAttributeSet1_1
79
// ----------------------------------------------------------------------------
80
/**
81    * Sets a new value for the attribute <code>name</code>.
82    * @param newValue The non-null new value for attribute <code>name</code>.
83    * @exception JmiException If the value cannot be set for some reason.
84    */

85   public void setName(
86     String JavaDoc newValue
87   );
88
89 // ----------------------------------------------------------------------------
90
// Instance/IntfReferenceGet0_1WithQualifier
91
// ----------------------------------------------------------------------------
92
/**
93    * Retrieves the value for the reference <code>slot</code> for the
94    * specified qualifier attribute value.
95    * @param id The value for the qualifier attribute that qualifies this reference.
96    * @return The possibly null value for this reference.
97    * @exception JmiException If the value cannot be retrieved for some reason.
98    */

99   public org.opencrx.kernel.reservation1.cci.Slot getSlot(
100     String JavaDoc id
101   );
102
103 // ----------------------------------------------------------------------------
104
// Instance/IntfReferenceGet0_nWithFilter
105
// ----------------------------------------------------------------------------
106
/**
107    * Retrieves a collection containing all the elements for the reference
108    * <code>slot</code>.
109    * @return A collection containing all the elements for this reference.
110    * @exception JmiException If the values cannot be retrieved for some reason.
111    */

112   public java.util.Collection JavaDoc getSlot(
113   );
114
115   /**
116    * Retrieves the value for the reference <code>slot</code> for the
117    * specified filter.
118    * @param filter filter which is applied to the set of referenced objects.
119    * @return The filtered collection of referenced objects.
120    * @exception JmiException If the value cannot be retrieved for some reason.
121    */

122   public java.util.List JavaDoc getSlot(
123     org.opencrx.kernel.reservation1.cci.SlotFilter filter
124   );
125
126 // ----------------------------------------------------------------------------
127
// Instance/IntfReferenceAddWithQualifier
128
// ----------------------------------------------------------------------------
129
/**
130    * @param id The qualifier attribute value that qualifies the reference to get the element to be appended.
131    * @param newValue The element to be appended.
132    * @exception JmiException If the value cannot be appended for some reason.
133    */

134   public void addSlot (
135     String JavaDoc id,
136     org.opencrx.kernel.reservation1.cci.Slot newValue
137   );
138
139 // ----------------------------------------------------------------------------
140
// Instance/IntfReferenceAddWithoutQualifier
141
// ----------------------------------------------------------------------------
142
/**
143    * @param newValue The element to be appended.
144    * @exception JmiException If the value cannot be appended for some reason.
145    */

146   public void addSlot (
147     org.opencrx.kernel.reservation1.cci.Slot newValue
148   );
149
150 // ----------------------------------------------------------------------------
151
// Instance/IntfReferenceRemoveWithQualifier
152
// ----------------------------------------------------------------------------
153
/**
154    * @exception JmiException If the value cannot be removed for some reason.
155    */

156   public void removeSlot (
157     String JavaDoc id
158   );
159 // ----------------------------------------------------------------------------
160
// Instance/IntfEnd.vm
161
// ----------------------------------------------------------------------------
162
}
163
Popular Tags