KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > opencrx > kernel > account1 > cci > LegalEntity


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:55 CEST 2006
9
//
10
// GENERATED - DO NOT CHANGE MANUALLY
11
//
12
//////////////////////////////////////////////////////////////////////////////
13
package org.opencrx.kernel.account1.cci;
14
15 public interface LegalEntity
16   extends
17  org.opencrx.kernel.account1.cci.Account {
18 // ----------------------------------------------------------------------------
19
// Instance/IntfAttributeGet1_1
20
// ----------------------------------------------------------------------------
21
/**
22    * Retrieves the value for the attribute <code>industry</code>.
23    * @return The non-null value for attribute <code>industry</code>.
24    * @exception JmiException If the value cannot be retrieved for some reason.
25    */

26   public short getIndustry(
27   );
28
29 // ----------------------------------------------------------------------------
30
// Instance/IntfAttributeSet1_1
31
// ----------------------------------------------------------------------------
32
/**
33    * Sets a new value for the attribute <code>industry</code>.
34    * @param newValue The non-null new value for attribute <code>industry</code>.
35    * @exception JmiException If the value cannot be set for some reason.
36    */

37   public void setIndustry(
38     short newValue
39   );
40
41 // ----------------------------------------------------------------------------
42
// Instance/IntfAttributeGet1_1
43
// ----------------------------------------------------------------------------
44
/**
45    * Retrieves the value for the attribute <code>name</code>.
46    * @return The non-null value for attribute <code>name</code>.
47    * @exception JmiException If the value cannot be retrieved for some reason.
48    */

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

60   public void setName(
61     String JavaDoc newValue
62   );
63
64 // ----------------------------------------------------------------------------
65
// Instance/IntfAttributeGet0_1
66
// ----------------------------------------------------------------------------
67
/**
68    * @return The possibly null value for attribute <code>numberOfEmployees</code>.
69    * @exception JmiException If the value cannot be retrieved for some reason.
70    */

71   public Integer JavaDoc getNumberOfEmployees(
72   );
73
74 // ----------------------------------------------------------------------------
75
// Instance/IntfAttributeSet0_1
76
// ----------------------------------------------------------------------------
77

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

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

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

107   public void setNumberOfEmployeesCategory(
108     short newValue
109   );
110
111 // ----------------------------------------------------------------------------
112
// Instance/IntfReferenceGet0_1NoQualifier
113
// ----------------------------------------------------------------------------
114
/**
115    * Retrieves the value for the optional reference <code>organizationalUnit</code>.
116    * @return The possibly null value for this reference.
117    * @exception JmiException If the value cannot be retrieved for some reason.
118    */

119   public org.opencrx.kernel.account1.cci.OrganizationalUnit getOrganizationalUnit(
120   );
121
122 // ----------------------------------------------------------------------------
123
// Instance/IntfReferenceSetNoQualifier
124
// ----------------------------------------------------------------------------
125
/**
126    * Sets a new value for the reference <code>organizationalUnit</code>.
127    * @param newValue The non-null new value for this reference.
128    * @exception JmiException If the value cannot be set for some reason.
129    */

130   public void setOrganizationalUnit(
131     org.opencrx.kernel.account1.cci.OrganizationalUnit newValue
132   );
133
134 // ----------------------------------------------------------------------------
135
// Instance/IntfReferenceRemoveOptional
136
// ----------------------------------------------------------------------------
137
/**
138    * Removes the value for the optional reference <code>organizationalUnit</code>.
139    * @exception JmiException If the value cannot be removed for some reason.
140    */

141   public void removeOrganizationalUnit (
142   );
143
144 // ----------------------------------------------------------------------------
145
// Instance/IntfReferenceGet0_1WithQualifier
146
// ----------------------------------------------------------------------------
147
/**
148    * Retrieves the value for the reference <code>revenueReport</code> for
149    * the specified qualifier attribute value.
150    * @param id The value for the qualifier attribute that qualifies this reference.
151    * @return The possibly null value for this reference.
152    * @exception JmiException If the value cannot be retrieved for some reason.
153    */

154   public org.opencrx.kernel.account1.cci.RevenueReport getRevenueReport(
155     String JavaDoc id
156   );
157
158 // ----------------------------------------------------------------------------
159
// Instance/IntfReferenceGet0_nWithFilter
160
// ----------------------------------------------------------------------------
161
/**
162    * Retrieves a collection containing all the elements for the reference
163    * <code>revenueReport</code>.
164    * @return A collection containing all the elements for this reference.
165    * @exception JmiException If the values cannot be retrieved for some reason.
166    */

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

177   public java.util.List JavaDoc getRevenueReport(
178     org.opencrx.kernel.account1.cci.RevenueReportFilter filter
179   );
180
181 // ----------------------------------------------------------------------------
182
// Instance/IntfReferenceAddWithQualifier
183
// ----------------------------------------------------------------------------
184
/**
185    * @param id The qualifier attribute value that qualifies the reference to get the element to be appended.
186    * @param newValue The element to be appended.
187    * @exception JmiException If the value cannot be appended for some reason.
188    */

189   public void addRevenueReport (
190     String JavaDoc id,
191     org.opencrx.kernel.account1.cci.RevenueReport newValue
192   );
193
194 // ----------------------------------------------------------------------------
195
// Instance/IntfReferenceAddWithoutQualifier
196
// ----------------------------------------------------------------------------
197
/**
198    * @param newValue The element to be appended.
199    * @exception JmiException If the value cannot be appended for some reason.
200    */

201   public void addRevenueReport (
202     org.opencrx.kernel.account1.cci.RevenueReport newValue
203   );
204
205 // ----------------------------------------------------------------------------
206
// Instance/IntfReferenceRemoveWithQualifier
207
// ----------------------------------------------------------------------------
208
/**
209    * @exception JmiException If the value cannot be removed for some reason.
210    */

211   public void removeRevenueReport (
212     String JavaDoc id
213   );
214 // ----------------------------------------------------------------------------
215
// Instance/IntfAttributeGet0_1
216
// ----------------------------------------------------------------------------
217
/**
218    * @return The possibly null value for attribute <code>stockExchange</code>.
219    * @exception JmiException If the value cannot be retrieved for some reason.
220    */

221   public String JavaDoc getStockExchange(
222   );
223
224 // ----------------------------------------------------------------------------
225
// Instance/IntfAttributeSet0_1
226
// ----------------------------------------------------------------------------
227

228
229   /**
230    * Sets a new value for the attribute <code>stockExchange</code>.
231    * @param newValue The possibly null new value for attribute <code>stockExchange</code>.
232    * @exception JmiException If the value cannot be set for some reason.
233    */

234   public void setStockExchange(
235     String JavaDoc newValue
236   );
237
238 // ----------------------------------------------------------------------------
239
// Instance/IntfAttributeGet0_1
240
// ----------------------------------------------------------------------------
241
/**
242    * @return The possibly null value for attribute <code>tickerSymbol</code>.
243    * @exception JmiException If the value cannot be retrieved for some reason.
244    */

245   public String JavaDoc getTickerSymbol(
246   );
247
248 // ----------------------------------------------------------------------------
249
// Instance/IntfAttributeSet0_1
250
// ----------------------------------------------------------------------------
251

252
253   /**
254    * Sets a new value for the attribute <code>tickerSymbol</code>.
255    * @param newValue The possibly null new value for attribute <code>tickerSymbol</code>.
256    * @exception JmiException If the value cannot be set for some reason.
257    */

258   public void setTickerSymbol(
259     String JavaDoc newValue
260   );
261
262 // ----------------------------------------------------------------------------
263
// Instance/IntfEnd.vm
264
// ----------------------------------------------------------------------------
265
}
266
Popular Tags