KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > opencrx > kernel > depot1 > cci > Booking


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:57 CEST 2006
9
//
10
// GENERATED - DO NOT CHANGE MANUALLY
11
//
12
//////////////////////////////////////////////////////////////////////////////
13
package org.opencrx.kernel.depot1.cci;
14
15 public interface Booking
16   extends
17  org.opencrx.kernel.base.cci.PropertySet,
18  org.opencrx.kernel.generic.cci.CrxObject,
19  org.opencrx.kernel.generic.cci.DescriptionContainer,
20  org.opencrx.kernel.product1.cci.ProductConfigurationSet {
21 // ----------------------------------------------------------------------------
22
// Instance/IntfAttributeGet1_1
23
// ----------------------------------------------------------------------------
24
/**
25    * Retrieves the value for the attribute <code>bookingDate</code>.
26    * @return The non-null value for attribute <code>bookingDate</code>.
27    * @exception JmiException If the value cannot be retrieved for some reason.
28    */

29   public java.util.Date JavaDoc getBookingDate(
30   );
31
32 // ----------------------------------------------------------------------------
33
// Instance/IntfAttributeSet1_1
34
// ----------------------------------------------------------------------------
35
/**
36    * Sets a new value for the attribute <code>bookingDate</code>.
37    * @param newValue The non-null new value for attribute <code>bookingDate</code>.
38    * @exception JmiException If the value cannot be set for some reason.
39    */

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

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

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

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

86   public void setBookingType(
87     short newValue
88   );
89
90 // ----------------------------------------------------------------------------
91
// Instance/IntfReferenceGet0_1NoQualifier
92
// ----------------------------------------------------------------------------
93
/**
94    * Retrieves the value for the optional reference <code>cb</code>.
95    * @return The possibly null value for this reference.
96    * @exception JmiException If the value cannot be retrieved for some reason.
97    */

98   public org.opencrx.kernel.depot1.cci.CompoundBooking getCb(
99   );
100
101 // ----------------------------------------------------------------------------
102
// Instance/IntfReferenceSetNoQualifier
103
// ----------------------------------------------------------------------------
104
/**
105    * Sets a new value for the reference <code>cb</code>.
106    * @param newValue The non-null new value for this reference.
107    * @exception JmiException If the value cannot be set for some reason.
108    */

109   public void setCb(
110     org.opencrx.kernel.depot1.cci.CompoundBooking newValue
111   );
112
113 // ----------------------------------------------------------------------------
114
// Instance/IntfReferenceRemoveOptional
115
// ----------------------------------------------------------------------------
116
/**
117    * Removes the value for the optional reference <code>cb</code>.
118    * @exception JmiException If the value cannot be removed for some reason.
119    */

120   public void removeCb (
121   );
122
123 // ----------------------------------------------------------------------------
124
// Instance/IntfAttributeGet0_1
125
// ----------------------------------------------------------------------------
126
/**
127    * @return The possibly null value for attribute <code>description</code>.
128    * @exception JmiException If the value cannot be retrieved for some reason.
129    */

130   public String JavaDoc getDescription(
131   );
132
133 // ----------------------------------------------------------------------------
134
// Instance/IntfAttributeSet0_1
135
// ----------------------------------------------------------------------------
136

137
138   /**
139    * Sets a new value for the attribute <code>description</code>.
140    * @param newValue The possibly null new value for attribute <code>description</code>.
141    * @exception JmiException If the value cannot be set for some reason.
142    */

143   public void setDescription(
144     String JavaDoc newValue
145   );
146
147 // ----------------------------------------------------------------------------
148
// Instance/IntfAttributeGet1_1
149
// ----------------------------------------------------------------------------
150
/**
151    * Retrieves the value for the attribute <code>name</code>.
152    * @return The non-null value for attribute <code>name</code>.
153    * @exception JmiException If the value cannot be retrieved for some reason.
154    */

155   public String JavaDoc getName(
156   );
157
158 // ----------------------------------------------------------------------------
159
// Instance/IntfAttributeSet1_1
160
// ----------------------------------------------------------------------------
161
/**
162    * Sets a new value for the attribute <code>name</code>.
163    * @param newValue The non-null new value for attribute <code>name</code>.
164    * @exception JmiException If the value cannot be set for some reason.
165    */

166   public void setName(
167     String JavaDoc newValue
168   );
169
170 // ----------------------------------------------------------------------------
171
// Instance/IntfReferenceGet0_1NoQualifier
172
// ----------------------------------------------------------------------------
173
/**
174    * Retrieves the value for the optional reference <code>origin</code>.
175    * @return The possibly null value for this reference.
176    * @exception JmiException If the value cannot be retrieved for some reason.
177    */

178   public org.opencrx.kernel.depot1.cci.BookingOrigin getOrigin(
179   );
180
181 // ----------------------------------------------------------------------------
182
// Instance/IntfReferenceSetNoQualifier
183
// ----------------------------------------------------------------------------
184
/**
185    * Sets a new value for the reference <code>origin</code>.
186    * @param newValue The non-null new value for this reference.
187    * @exception JmiException If the value cannot be set for some reason.
188    */

189   public void setOrigin(
190     org.opencrx.kernel.depot1.cci.BookingOrigin newValue
191   );
192
193 // ----------------------------------------------------------------------------
194
// Instance/IntfReferenceRemoveOptional
195
// ----------------------------------------------------------------------------
196
/**
197    * Removes the value for the optional reference <code>origin</code>.
198    * @exception JmiException If the value cannot be removed for some reason.
199    */

200   public void removeOrigin (
201   );
202
203 // ----------------------------------------------------------------------------
204
// Instance/IntfReferenceGet0_1NoQualifier
205
// ----------------------------------------------------------------------------
206
/**
207    * Retrieves the value for the optional reference <code>position</code>.
208    * @return The possibly null value for this reference.
209    * @exception JmiException If the value cannot be retrieved for some reason.
210    */

211   public org.opencrx.kernel.depot1.cci.DepotPosition getPosition(
212   );
213
214 // ----------------------------------------------------------------------------
215
// Instance/IntfReferenceSetNoQualifier
216
// ----------------------------------------------------------------------------
217
/**
218    * Sets a new value for the reference <code>position</code>.
219    * @param newValue The non-null new value for this reference.
220    * @exception JmiException If the value cannot be set for some reason.
221    */

222   public void setPosition(
223     org.opencrx.kernel.depot1.cci.DepotPosition newValue
224   );
225
226 // ----------------------------------------------------------------------------
227
// Instance/IntfReferenceRemoveOptional
228
// ----------------------------------------------------------------------------
229
/**
230    * Removes the value for the optional reference <code>position</code>.
231    * @exception JmiException If the value cannot be removed for some reason.
232    */

233   public void removePosition (
234   );
235
236 // ----------------------------------------------------------------------------
237
// Instance/IntfAttributeGet1_1
238
// ----------------------------------------------------------------------------
239
/**
240    * Retrieves the value for the attribute <code>valueDate</code>.
241    * @return The non-null value for attribute <code>valueDate</code>.
242    * @exception JmiException If the value cannot be retrieved for some reason.
243    */

244   public java.util.Date JavaDoc getValueDate(
245   );
246
247 // ----------------------------------------------------------------------------
248
// Instance/IntfAttributeSet1_1
249
// ----------------------------------------------------------------------------
250
/**
251    * Sets a new value for the attribute <code>valueDate</code>.
252    * @param newValue The non-null new value for attribute <code>valueDate</code>.
253    * @exception JmiException If the value cannot be set for some reason.
254    */

255   public void setValueDate(
256     java.util.Date JavaDoc newValue
257   );
258
259 // ----------------------------------------------------------------------------
260
// Instance/IntfEnd.vm
261
// ----------------------------------------------------------------------------
262
}
263
Popular Tags