KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > opencrx > kernel > activity1 > cci > EffortEstimate


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:02 CEST 2006
9
//
10
// GENERATED - DO NOT CHANGE MANUALLY
11
//
12
//////////////////////////////////////////////////////////////////////////////
13
package org.opencrx.kernel.activity1.cci;
14
15 public interface EffortEstimate
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>description</code>.
24    * @exception JmiException If the value cannot be retrieved for some reason.
25    */

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

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

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

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

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

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

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

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

87   public void setEstimateEffortMinutes(
88     Integer JavaDoc newValue
89   );
90
91 // ----------------------------------------------------------------------------
92
// Instance/IntfAttributeGet0_1
93
// ----------------------------------------------------------------------------
94
/**
95    * @return The possibly null value for attribute <code>estimateMaxDeviation</code>.
96    * @exception JmiException If the value cannot be retrieved for some reason.
97    */

98   public Integer JavaDoc getEstimateMaxDeviation(
99   );
100
101 // ----------------------------------------------------------------------------
102
// Instance/IntfAttributeSet0_1
103
// ----------------------------------------------------------------------------
104

105
106   /**
107    * Sets a new value for the attribute <code>estimateMaxDeviation</code>.
108    * @param newValue The possibly null new value for attribute <code>estimateMaxDeviation</code>.
109    * @exception JmiException If the value cannot be set for some reason.
110    */

111   public void setEstimateMaxDeviation(
112     Integer JavaDoc newValue
113   );
114
115 // ----------------------------------------------------------------------------
116
// Instance/IntfAttributeGet0_1
117
// ----------------------------------------------------------------------------
118
/**
119    * @return The possibly null value for attribute <code>isMain</code>.
120    * @exception JmiException If the value cannot be retrieved for some reason.
121    */

122   public Boolean JavaDoc isMain(
123   );
124
125 // ----------------------------------------------------------------------------
126
// Instance/IntfAttributeSet0_1
127
// ----------------------------------------------------------------------------
128

129
130   /**
131    * Sets a new value for the attribute <code>isMain</code>.
132    * @param newValue The possibly null new value for attribute <code>isMain</code>.
133    * @exception JmiException If the value cannot be set for some reason.
134    */

135   public void setMain(
136     Boolean JavaDoc newValue
137   );
138
139 // ----------------------------------------------------------------------------
140
// Instance/IntfAttributeGet1_1
141
// ----------------------------------------------------------------------------
142
/**
143    * Retrieves the value for the attribute <code>name</code>.
144    * @return The non-null value for attribute <code>name</code>.
145    * @exception JmiException If the value cannot be retrieved for some reason.
146    */

147   public String JavaDoc getName(
148   );
149
150 // ----------------------------------------------------------------------------
151
// Instance/IntfAttributeSet1_1
152
// ----------------------------------------------------------------------------
153
/**
154    * Sets a new value for the attribute <code>name</code>.
155    * @param newValue The non-null new value for attribute <code>name</code>.
156    * @exception JmiException If the value cannot be set for some reason.
157    */

158   public void setName(
159     String JavaDoc newValue
160   );
161
162 // ----------------------------------------------------------------------------
163
// Instance/IntfAttributeGetList
164
// ----------------------------------------------------------------------------
165
/**
166    * @return A list containing all elements for this attribute.
167    * @exception JmiException If the values cannot be retrieved for some reason.
168    */

169   public java.util.List JavaDoc getSelector(
170   );
171
172   /**
173    * @param index The index of the element to return.
174    * @return The element at the specified position in the list of all values for this attribute.
175    * @exception JmiException If the value cannot be retrieved for some reason.
176    */

177   public String JavaDoc getSelector(
178     int index
179   );
180
181 // ----------------------------------------------------------------------------
182
// Instance/IntfAttributeSetList
183
// ----------------------------------------------------------------------------
184
/**
185    * @param newValue A list containing all the new elements for this attribute.
186    * @exception JmiException If the values cannot be set for some reason.
187    */

188   public void setSelector(
189     java.util.List JavaDoc newValue
190   );
191
192   /**
193    * @param newValue An array containing all the new elements for this attribute.
194    * @exception JmiException If the values cannot be set for some reason.
195    */

196   public void setSelector(
197     String JavaDoc[] newValue
198   );
199
200 // ----------------------------------------------------------------------------
201
// Instance/IntfEnd.vm
202
// ----------------------------------------------------------------------------
203
}
204
Popular Tags