KickJava   Java API By Example, From Geeks To Geeks.

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


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

27   public org.opencrx.kernel.depot1.cci.BookingPeriod getBookingPeriod(
28   );
29
30 // ----------------------------------------------------------------------------
31
// Instance/IntfReferenceSetNoQualifier
32
// ----------------------------------------------------------------------------
33
/**
34    * Sets a new value for the reference <code>bookingPeriod</code>.
35    * @param newValue The non-null new value for this reference.
36    * @exception JmiException If the value cannot be set for some reason.
37    */

38   public void setBookingPeriod(
39     org.opencrx.kernel.depot1.cci.BookingPeriod newValue
40   );
41
42 // ----------------------------------------------------------------------------
43
// Instance/IntfReferenceRemoveOptional
44
// ----------------------------------------------------------------------------
45
/**
46    * Removes the value for the optional reference <code>bookingPeriod</code>.
47    * @exception JmiException If the value cannot be removed for some reason.
48    */

49   public void removeBookingPeriod (
50   );
51
52 // ----------------------------------------------------------------------------
53
// Instance/IntfReferenceGet1_1NoQualifier
54
// ----------------------------------------------------------------------------
55
/**
56    * Retrieves the value for the reference <code>depot</code>.
57    * @return The non-null value for this reference.
58    * @exception JmiException If the value cannot be retrieved for some reason.
59    */

60   public org.opencrx.kernel.depot1.cci.Depot getDepot(
61   );
62
63 // ----------------------------------------------------------------------------
64
// Instance/IntfAttributeGet0_1
65
// ----------------------------------------------------------------------------
66
/**
67    * @return The possibly null value for attribute <code>description</code>.
68    * @exception JmiException If the value cannot be retrieved for some reason.
69    */

70   public String JavaDoc getDescription(
71   );
72
73 // ----------------------------------------------------------------------------
74
// Instance/IntfAttributeSet0_1
75
// ----------------------------------------------------------------------------
76

77
78   /**
79    * Sets a new value for the attribute <code>description</code>.
80    * @param newValue The possibly null new value for attribute <code>description</code>.
81    * @exception JmiException If the value cannot be set for some reason.
82    */

83   public void setDescription(
84     String JavaDoc newValue
85   );
86
87 // ----------------------------------------------------------------------------
88
// Instance/IntfAttributeGet1_1
89
// ----------------------------------------------------------------------------
90
/**
91    * Retrieves the value for the attribute <code>isDraft</code>.
92    * @return The non-null value for attribute <code>isDraft</code>.
93    * @exception JmiException If the value cannot be retrieved for some reason.
94    */

95   public boolean isDraft(
96   );
97
98 // ----------------------------------------------------------------------------
99
// Instance/IntfAttributeSet1_1
100
// ----------------------------------------------------------------------------
101
/**
102    * Sets a new value for the attribute <code>isDraft</code>.
103    * @param newValue The non-null new value for attribute <code>isDraft</code>.
104    * @exception JmiException If the value cannot be set for some reason.
105    */

106   public void setDraft(
107     boolean newValue
108   );
109
110 // ----------------------------------------------------------------------------
111
// Instance/IntfReferenceGet0_1WithQualifier
112
// ----------------------------------------------------------------------------
113
/**
114    * Retrieves the value for the reference <code>itemBooking</code> for the
115    * specified qualifier attribute value.
116    * @param id The value for the qualifier attribute that qualifies this reference.
117    * @return The possibly null value for this reference.
118    * @exception JmiException If the value cannot be retrieved for some reason.
119    */

120   public org.opencrx.kernel.depot1.cci.DepotReportItemBooking getItemBooking(
121     String JavaDoc id
122   );
123
124 // ----------------------------------------------------------------------------
125
// Instance/IntfReferenceGet0_nWithFilter
126
// ----------------------------------------------------------------------------
127
/**
128    * Retrieves a collection containing all the elements for the reference
129    * <code>itemBooking</code>.
130    * @return A collection containing all the elements for this reference.
131    * @exception JmiException If the values cannot be retrieved for some reason.
132    */

133   public java.util.Collection JavaDoc getItemBooking(
134   );
135
136   /**
137    * Retrieves the value for the reference <code>itemBooking</code> for the
138    * specified filter.
139    * @param filter filter which is applied to the set of referenced objects.
140    * @return The filtered collection of referenced objects.
141    * @exception JmiException If the value cannot be retrieved for some reason.
142    */

143   public java.util.List JavaDoc getItemBooking(
144     org.opencrx.kernel.depot1.cci.DepotReportItemBookingFilter filter
145   );
146
147 // ----------------------------------------------------------------------------
148
// Instance/IntfReferenceGet0_1WithQualifier
149
// ----------------------------------------------------------------------------
150
/**
151    * Retrieves the value for the reference <code>itemPosition</code> for the
152    * specified qualifier attribute value.
153    * @param id The value for the qualifier attribute that qualifies this reference.
154    * @return The possibly null value for this reference.
155    * @exception JmiException If the value cannot be retrieved for some reason.
156    */

157   public org.opencrx.kernel.depot1.cci.DepotReportItemPosition getItemPosition(
158     String JavaDoc id
159   );
160
161 // ----------------------------------------------------------------------------
162
// Instance/IntfReferenceGet0_nWithFilter
163
// ----------------------------------------------------------------------------
164
/**
165    * Retrieves a collection containing all the elements for the reference
166    * <code>itemPosition</code>.
167    * @return A collection containing all the elements for this reference.
168    * @exception JmiException If the values cannot be retrieved for some reason.
169    */

170   public java.util.Collection JavaDoc getItemPosition(
171   );
172
173   /**
174    * Retrieves the value for the reference <code>itemPosition</code> for the
175    * specified filter.
176    * @param filter filter which is applied to the set of referenced objects.
177    * @return The filtered collection of referenced objects.
178    * @exception JmiException If the value cannot be retrieved for some reason.
179    */

180   public java.util.List JavaDoc getItemPosition(
181     org.opencrx.kernel.depot1.cci.DepotReportItemPositionFilter filter
182   );
183
184 // ----------------------------------------------------------------------------
185
// Instance/IntfAttributeGet1_1
186
// ----------------------------------------------------------------------------
187
/**
188    * Retrieves the value for the attribute <code>name</code>.
189    * @return The non-null value for attribute <code>name</code>.
190    * @exception JmiException If the value cannot be retrieved for some reason.
191    */

192   public String JavaDoc getName(
193   );
194
195 // ----------------------------------------------------------------------------
196
// Instance/IntfAttributeSet1_1
197
// ----------------------------------------------------------------------------
198
/**
199    * Sets a new value for the attribute <code>name</code>.
200    * @param newValue The non-null new value for attribute <code>name</code>.
201    * @exception JmiException If the value cannot be set for some reason.
202    */

203   public void setName(
204     String JavaDoc newValue
205   );
206
207 // ----------------------------------------------------------------------------
208
// Instance/IntfEnd.vm
209
// ----------------------------------------------------------------------------
210
}
211
Popular Tags