KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > opencrx > kernel > code1 > cci > CodeValueEntry


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.code1.cci;
14
15 public interface CodeValueEntry
16   extends
17  org.opencrx.kernel.base.cci.SecureObject,
18  org.openmdx.base.cci.BasicObject {
19 // ----------------------------------------------------------------------------
20
// Instance/IntfAttributeGet0_1
21
// ----------------------------------------------------------------------------
22
/**
23    * @return The possibly null value for attribute <code>backColor</code>.
24    * @exception JmiException If the value cannot be retrieved for some reason.
25    */

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

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

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

50   public String JavaDoc getColor(
51   );
52
53 // ----------------------------------------------------------------------------
54
// Instance/IntfAttributeSet0_1
55
// ----------------------------------------------------------------------------
56

57
58   /**
59    * Sets a new value for the attribute <code>color</code>.
60    * @param newValue The possibly null new value for attribute <code>color</code>.
61    * @exception JmiException If the value cannot be set for some reason.
62    */

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

74   public String JavaDoc getIconKey(
75   );
76
77 // ----------------------------------------------------------------------------
78
// Instance/IntfAttributeSet0_1
79
// ----------------------------------------------------------------------------
80

81
82   /**
83    * Sets a new value for the attribute <code>iconKey</code>.
84    * @param newValue The possibly null new value for attribute <code>iconKey</code>.
85    * @exception JmiException If the value cannot be set for some reason.
86    */

87   public void setIconKey(
88     String JavaDoc newValue
89   );
90
91 // ----------------------------------------------------------------------------
92
// Instance/IntfAttributeGetList
93
// ----------------------------------------------------------------------------
94
/**
95    * @return A list containing all elements for this attribute.
96    * @exception JmiException If the values cannot be retrieved for some reason.
97    */

98   public java.util.List JavaDoc getLongText(
99   );
100
101   /**
102    * @param index The index of the element to return.
103    * @return The element at the specified position in the list of all values for this attribute.
104    * @exception JmiException If the value cannot be retrieved for some reason.
105    */

106   public String JavaDoc getLongText(
107     int index
108   );
109
110 // ----------------------------------------------------------------------------
111
// Instance/IntfAttributeSetList
112
// ----------------------------------------------------------------------------
113
/**
114    * @param newValue A list containing all the new elements for this attribute.
115    * @exception JmiException If the values cannot be set for some reason.
116    */

117   public void setLongText(
118     java.util.List JavaDoc newValue
119   );
120
121   /**
122    * @param newValue An array containing all the new elements for this attribute.
123    * @exception JmiException If the values cannot be set for some reason.
124    */

125   public void setLongText(
126     String JavaDoc[] newValue
127   );
128
129 // ----------------------------------------------------------------------------
130
// Instance/IntfAttributeGetList
131
// ----------------------------------------------------------------------------
132
/**
133    * @return A list containing all elements for this attribute.
134    * @exception JmiException If the values cannot be retrieved for some reason.
135    */

136   public java.util.List JavaDoc getShortText(
137   );
138
139   /**
140    * @param index The index of the element to return.
141    * @return The element at the specified position in the list of all values for this attribute.
142    * @exception JmiException If the value cannot be retrieved for some reason.
143    */

144   public String JavaDoc getShortText(
145     int index
146   );
147
148 // ----------------------------------------------------------------------------
149
// Instance/IntfAttributeSetList
150
// ----------------------------------------------------------------------------
151
/**
152    * @param newValue A list containing all the new elements for this attribute.
153    * @exception JmiException If the values cannot be set for some reason.
154    */

155   public void setShortText(
156     java.util.List JavaDoc newValue
157   );
158
159   /**
160    * @param newValue An array containing all the new elements for this attribute.
161    * @exception JmiException If the values cannot be set for some reason.
162    */

163   public void setShortText(
164     String JavaDoc[] newValue
165   );
166
167 // ----------------------------------------------------------------------------
168
// Instance/IntfAttributeGet0_1
169
// ----------------------------------------------------------------------------
170
/**
171    * @return The possibly null value for attribute <code>validFrom</code>.
172    * @exception JmiException If the value cannot be retrieved for some reason.
173    */

174   public java.util.Date JavaDoc getValidFrom(
175   );
176
177 // ----------------------------------------------------------------------------
178
// Instance/IntfAttributeSet0_1
179
// ----------------------------------------------------------------------------
180

181
182   /**
183    * Sets a new value for the attribute <code>validFrom</code>.
184    * @param newValue The possibly null new value for attribute <code>validFrom</code>.
185    * @exception JmiException If the value cannot be set for some reason.
186    */

187   public void setValidFrom(
188     java.util.Date JavaDoc newValue
189   );
190
191 // ----------------------------------------------------------------------------
192
// Instance/IntfAttributeGet0_1
193
// ----------------------------------------------------------------------------
194
/**
195    * @return The possibly null value for attribute <code>validTo</code>.
196    * @exception JmiException If the value cannot be retrieved for some reason.
197    */

198   public java.util.Date JavaDoc getValidTo(
199   );
200
201 // ----------------------------------------------------------------------------
202
// Instance/IntfAttributeSet0_1
203
// ----------------------------------------------------------------------------
204

205
206   /**
207    * Sets a new value for the attribute <code>validTo</code>.
208    * @param newValue The possibly null new value for attribute <code>validTo</code>.
209    * @exception JmiException If the value cannot be set for some reason.
210    */

211   public void setValidTo(
212     java.util.Date JavaDoc newValue
213   );
214
215 // ----------------------------------------------------------------------------
216
// Instance/IntfEnd.vm
217
// ----------------------------------------------------------------------------
218
}
219
Popular Tags