KickJava   Java API By Example, From Geeks To Geeks.

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


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:54 CEST 2006
9
//
10
// GENERATED - DO NOT CHANGE MANUALLY
11
//
12
//////////////////////////////////////////////////////////////////////////////
13
package org.opencrx.kernel.account1.cci;
14
15 public interface AbstractAccount
16   extends org.openmdx.base.accessor.jmi.cci.RefObject_1_0
17  {
18 // ----------------------------------------------------------------------------
19
// Instance/IntfAttributeGetList
20
// ----------------------------------------------------------------------------
21
/**
22    * @return A list containing all elements for this attribute.
23    * @exception JmiException If the values cannot be retrieved for some reason.
24    */

25   public java.util.List JavaDoc getAccountCategory(
26   );
27
28   /**
29    * @param index The index of the element to return.
30    * @return The element at the specified position in the list of all values for this attribute.
31    * @exception JmiException If the value cannot be retrieved for some reason.
32    */

33   public short getAccountCategory(
34     int index
35   );
36
37 // ----------------------------------------------------------------------------
38
// Instance/IntfAttributeSetList
39
// ----------------------------------------------------------------------------
40
/**
41    * @param newValue A list containing all the new elements for this attribute.
42    * @exception JmiException If the values cannot be set for some reason.
43    */

44   public void setAccountCategory(
45     java.util.List JavaDoc newValue
46   );
47
48   /**
49    * @param newValue An array containing all the new elements for this attribute.
50    * @exception JmiException If the values cannot be set for some reason.
51    */

52   public void setAccountCategory(
53     short[] newValue
54   );
55
56 // ----------------------------------------------------------------------------
57
// Instance/IntfAttributeGet1_1
58
// ----------------------------------------------------------------------------
59
/**
60    * Retrieves the value for the attribute <code>accountRating</code>.
61    * @return The non-null value for attribute <code>accountRating</code>.
62    * @exception JmiException If the value cannot be retrieved for some reason.
63    */

64   public short getAccountRating(
65   );
66
67 // ----------------------------------------------------------------------------
68
// Instance/IntfAttributeSet1_1
69
// ----------------------------------------------------------------------------
70
/**
71    * Sets a new value for the attribute <code>accountRating</code>.
72    * @param newValue The non-null new value for attribute <code>accountRating</code>.
73    * @exception JmiException If the value cannot be set for some reason.
74    */

75   public void setAccountRating(
76     short newValue
77   );
78
79 // ----------------------------------------------------------------------------
80
// Instance/IntfAttributeGet1_1
81
// ----------------------------------------------------------------------------
82
/**
83    * Retrieves the value for the attribute <code>accountState</code>.
84    * @return The non-null value for attribute <code>accountState</code>.
85    * @exception JmiException If the value cannot be retrieved for some reason.
86    */

87   public short getAccountState(
88   );
89
90 // ----------------------------------------------------------------------------
91
// Instance/IntfAttributeSet1_1
92
// ----------------------------------------------------------------------------
93
/**
94    * Sets a new value for the attribute <code>accountState</code>.
95    * @param newValue The non-null new value for attribute <code>accountState</code>.
96    * @exception JmiException If the value cannot be set for some reason.
97    */

98   public void setAccountState(
99     short newValue
100   );
101
102 // ----------------------------------------------------------------------------
103
// Instance/IntfAttributeGet1_1
104
// ----------------------------------------------------------------------------
105
/**
106    * Retrieves the value for the attribute <code>accountType</code>.
107    * @return The non-null value for attribute <code>accountType</code>.
108    * @exception JmiException If the value cannot be retrieved for some reason.
109    */

110   public short getAccountType(
111   );
112
113 // ----------------------------------------------------------------------------
114
// Instance/IntfAttributeSet1_1
115
// ----------------------------------------------------------------------------
116
/**
117    * Sets a new value for the attribute <code>accountType</code>.
118    * @param newValue The non-null new value for attribute <code>accountType</code>.
119    * @exception JmiException If the value cannot be set for some reason.
120    */

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

132   public String JavaDoc getAliasName(
133   );
134
135 // ----------------------------------------------------------------------------
136
// Instance/IntfAttributeSet0_1
137
// ----------------------------------------------------------------------------
138

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

145   public void setAliasName(
146     String JavaDoc newValue
147   );
148
149 // ----------------------------------------------------------------------------
150
// Instance/IntfAttributeGetList
151
// ----------------------------------------------------------------------------
152
/**
153    * @return A list containing all elements for this attribute.
154    * @exception JmiException If the values cannot be retrieved for some reason.
155    */

156   public java.util.List JavaDoc getBusinessType(
157   );
158
159   /**
160    * @param index The index of the element to return.
161    * @return The element at the specified position in the list of all values for this attribute.
162    * @exception JmiException If the value cannot be retrieved for some reason.
163    */

164   public short getBusinessType(
165     int index
166   );
167
168 // ----------------------------------------------------------------------------
169
// Instance/IntfAttributeSetList
170
// ----------------------------------------------------------------------------
171
/**
172    * @param newValue A list containing all the new elements for this attribute.
173    * @exception JmiException If the values cannot be set for some reason.
174    */

175   public void setBusinessType(
176     java.util.List JavaDoc newValue
177   );
178
179   /**
180    * @param newValue An array containing all the new elements for this attribute.
181    * @exception JmiException If the values cannot be set for some reason.
182    */

183   public void setBusinessType(
184     short[] newValue
185   );
186
187 // ----------------------------------------------------------------------------
188
// Instance/IntfAttributeGet0_1
189
// ----------------------------------------------------------------------------
190
/**
191    * @return The possibly null value for attribute <code>description</code>.
192    * @exception JmiException If the value cannot be retrieved for some reason.
193    */

194   public String JavaDoc getDescription(
195   );
196
197 // ----------------------------------------------------------------------------
198
// Instance/IntfAttributeSet0_1
199
// ----------------------------------------------------------------------------
200

201
202   /**
203    * Sets a new value for the attribute <code>description</code>.
204    * @param newValue The possibly null new value for attribute <code>description</code>.
205    * @exception JmiException If the value cannot be set for some reason.
206    */

207   public void setDescription(
208     String JavaDoc newValue
209   );
210
211 // ----------------------------------------------------------------------------
212
// Instance/IntfAttributeGet0_1
213
// ----------------------------------------------------------------------------
214
/**
215    * @return The possibly null value for attribute <code>fullName</code>.
216    * @exception JmiException If the value cannot be retrieved for some reason.
217    */

218   public String JavaDoc getFullName(
219   );
220
221 // ----------------------------------------------------------------------------
222
// Instance/IntfEnd.vm
223
// ----------------------------------------------------------------------------
224
}
225
Popular Tags