KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > opencrx > kernel > building1 > cci > AbstractBuildingUnit


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.building1.cci;
14
15 public interface AbstractBuildingUnit
16   extends
17  org.opencrx.kernel.generic.cci.Pictured {
18 // ----------------------------------------------------------------------------
19
// Instance/IntfAttributeGet0_1
20
// ----------------------------------------------------------------------------
21
/**
22    * @return The possibly null value for attribute <code>description</code>.
23    * @exception JmiException If the value cannot be retrieved for some reason.
24    */

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

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

38   public void setDescription(
39     String JavaDoc newValue
40   );
41
42 // ----------------------------------------------------------------------------
43
// Instance/IntfReferenceGet0_1WithQualifier
44
// ----------------------------------------------------------------------------
45
/**
46    * Retrieves the value for the reference <code>facility</code> for the
47    * specified qualifier attribute value.
48    * @param id The value for the qualifier attribute that qualifies this reference.
49    * @return The possibly null value for this reference.
50    * @exception JmiException If the value cannot be retrieved for some reason.
51    */

52   public org.opencrx.kernel.building1.cci.Facility getFacility(
53     String JavaDoc id
54   );
55
56 // ----------------------------------------------------------------------------
57
// Instance/IntfReferenceGet0_nWithFilter
58
// ----------------------------------------------------------------------------
59
/**
60    * Retrieves a collection containing all the elements for the reference
61    * <code>facility</code>.
62    * @return A collection containing all the elements for this reference.
63    * @exception JmiException If the values cannot be retrieved for some reason.
64    */

65   public java.util.Collection JavaDoc getFacility(
66   );
67
68   /**
69    * Retrieves the value for the reference <code>facility</code> for the
70    * specified filter.
71    * @param filter filter which is applied to the set of referenced objects.
72    * @return The filtered collection of referenced objects.
73    * @exception JmiException If the value cannot be retrieved for some reason.
74    */

75   public java.util.List JavaDoc getFacility(
76     org.opencrx.kernel.building1.cci.FacilityFilter filter
77   );
78
79 // ----------------------------------------------------------------------------
80
// Instance/IntfReferenceAddWithQualifier
81
// ----------------------------------------------------------------------------
82
/**
83    * @param id The qualifier attribute value that qualifies the reference to get the element to be appended.
84    * @param newValue The element to be appended.
85    * @exception JmiException If the value cannot be appended for some reason.
86    */

87   public void addFacility (
88     String JavaDoc id,
89     org.opencrx.kernel.building1.cci.Facility newValue
90   );
91
92 // ----------------------------------------------------------------------------
93
// Instance/IntfReferenceAddWithoutQualifier
94
// ----------------------------------------------------------------------------
95
/**
96    * @param newValue The element to be appended.
97    * @exception JmiException If the value cannot be appended for some reason.
98    */

99   public void addFacility (
100     org.opencrx.kernel.building1.cci.Facility newValue
101   );
102
103 // ----------------------------------------------------------------------------
104
// Instance/IntfReferenceRemoveWithQualifier
105
// ----------------------------------------------------------------------------
106
/**
107    * @exception JmiException If the value cannot be removed for some reason.
108    */

109   public void removeFacility (
110     String JavaDoc id
111   );
112 // ----------------------------------------------------------------------------
113
// Instance/IntfAttributeGet1_1
114
// ----------------------------------------------------------------------------
115
/**
116    * Retrieves the value for the attribute <code>name</code>.
117    * @return The non-null value for attribute <code>name</code>.
118    * @exception JmiException If the value cannot be retrieved for some reason.
119    */

120   public String JavaDoc getName(
121   );
122
123 // ----------------------------------------------------------------------------
124
// Instance/IntfAttributeSet1_1
125
// ----------------------------------------------------------------------------
126
/**
127    * Sets a new value for the attribute <code>name</code>.
128    * @param newValue The non-null new value for attribute <code>name</code>.
129    * @exception JmiException If the value cannot be set for some reason.
130    */

131   public void setName(
132     String JavaDoc newValue
133   );
134
135 // ----------------------------------------------------------------------------
136
// Instance/IntfAttributeGet0_1
137
// ----------------------------------------------------------------------------
138
/**
139    * @return The possibly null value for attribute <code>sizeInCubicMeter</code>.
140    * @exception JmiException If the value cannot be retrieved for some reason.
141    */

142   public java.math.BigDecimal JavaDoc getSizeInCubicMeter(
143   );
144
145 // ----------------------------------------------------------------------------
146
// Instance/IntfAttributeSet0_1
147
// ----------------------------------------------------------------------------
148

149
150   /**
151    * Sets a new value for the attribute <code>sizeInCubicMeter</code>.
152    * @param newValue The possibly null new value for attribute <code>sizeInCubicMeter</code>.
153    * @exception JmiException If the value cannot be set for some reason.
154    */

155   public void setSizeInCubicMeter(
156     java.math.BigDecimal JavaDoc newValue
157   );
158
159 // ----------------------------------------------------------------------------
160
// Instance/IntfAttributeGet0_1
161
// ----------------------------------------------------------------------------
162
/**
163    * @return The possibly null value for attribute <code>sizeInSquareMeter</code>.
164    * @exception JmiException If the value cannot be retrieved for some reason.
165    */

166   public java.math.BigDecimal JavaDoc getSizeInSquareMeter(
167   );
168
169 // ----------------------------------------------------------------------------
170
// Instance/IntfAttributeSet0_1
171
// ----------------------------------------------------------------------------
172

173
174   /**
175    * Sets a new value for the attribute <code>sizeInSquareMeter</code>.
176    * @param newValue The possibly null new value for attribute <code>sizeInSquareMeter</code>.
177    * @exception JmiException If the value cannot be set for some reason.
178    */

179   public void setSizeInSquareMeter(
180     java.math.BigDecimal JavaDoc newValue
181   );
182
183 // ----------------------------------------------------------------------------
184
// Instance/IntfEnd.vm
185
// ----------------------------------------------------------------------------
186
}
187
Popular Tags