KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > opencrx > kernel > model1 > cci > Element


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:53 CEST 2006
9
//
10
// GENERATED - DO NOT CHANGE MANUALLY
11
//
12
//////////////////////////////////////////////////////////////////////////////
13
package org.opencrx.kernel.model1.cci;
14
15 public interface Element
16   extends
17  org.opencrx.kernel.generic.cci.CrxObject {
18 // ----------------------------------------------------------------------------
19
// Instance/IntfAttributeGet0_1
20
// ----------------------------------------------------------------------------
21
/**
22    * @return The possibly null value for attribute <code>annotation</code>.
23    * @exception JmiException If the value cannot be retrieved for some reason.
24    */

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

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

38   public void setAnnotation(
39     String JavaDoc newValue
40   );
41
42 // ----------------------------------------------------------------------------
43
// Instance/IntfReferenceGet0_1NoQualifier
44
// ----------------------------------------------------------------------------
45
/**
46    * Retrieves the value for the optional reference <code>container</code>.
47    * @return The possibly null value for this reference.
48    * @exception JmiException If the value cannot be retrieved for some reason.
49    */

50   public org.opencrx.kernel.model1.cci.Namespace getContainer(
51   );
52
53 // ----------------------------------------------------------------------------
54
// Instance/IntfReferenceSetNoQualifier
55
// ----------------------------------------------------------------------------
56
/**
57    * Sets a new value for the reference <code>container</code>.
58    * @param newValue The non-null new value for this reference.
59    * @exception JmiException If the value cannot be set for some reason.
60    */

61   public void setContainer(
62     org.opencrx.kernel.model1.cci.Namespace newValue
63   );
64
65 // ----------------------------------------------------------------------------
66
// Instance/IntfReferenceRemoveOptional
67
// ----------------------------------------------------------------------------
68
/**
69    * Removes the value for the optional reference <code>container</code>.
70    * @exception JmiException If the value cannot be removed for some reason.
71    */

72   public void removeContainer (
73   );
74
75 // ----------------------------------------------------------------------------
76
// Instance/IntfAttributeGet0_1
77
// ----------------------------------------------------------------------------
78
/**
79    * @return The possibly null value for attribute <code>elementOrder</code>.
80    * @exception JmiException If the value cannot be retrieved for some reason.
81    */

82   public Integer JavaDoc getElementOrder(
83   );
84
85 // ----------------------------------------------------------------------------
86
// Instance/IntfAttributeSet0_1
87
// ----------------------------------------------------------------------------
88

89
90   /**
91    * Sets a new value for the attribute <code>elementOrder</code>.
92    * @param newValue The possibly null new value for attribute <code>elementOrder</code>.
93    * @exception JmiException If the value cannot be set for some reason.
94    */

95   public void setElementOrder(
96     Integer JavaDoc newValue
97   );
98
99 // ----------------------------------------------------------------------------
100
// Instance/IntfAttributeGet1_1
101
// ----------------------------------------------------------------------------
102
/**
103    * Retrieves the value for the attribute <code>name</code>.
104    * @return The non-null value for attribute <code>name</code>.
105    * @exception JmiException If the value cannot be retrieved for some reason.
106    */

107   public String JavaDoc getName(
108   );
109
110 // ----------------------------------------------------------------------------
111
// Instance/IntfAttributeSet1_1
112
// ----------------------------------------------------------------------------
113
/**
114    * Sets a new value for the attribute <code>name</code>.
115    * @param newValue The non-null new value for attribute <code>name</code>.
116    * @exception JmiException If the value cannot be set for some reason.
117    */

118   public void setName(
119     String JavaDoc newValue
120   );
121
122 // ----------------------------------------------------------------------------
123
// Instance/IntfAttributeGet1_1
124
// ----------------------------------------------------------------------------
125
/**
126    * Retrieves the value for the attribute <code>qualifiedName</code>.
127    * @return The non-null value for attribute <code>qualifiedName</code>.
128    * @exception JmiException If the value cannot be retrieved for some reason.
129    */

130   public String JavaDoc getQualifiedName(
131   );
132
133 // ----------------------------------------------------------------------------
134
// Instance/IntfReferenceGet1_1NoQualifier
135
// ----------------------------------------------------------------------------
136
/**
137    * Retrieves the value for the reference <code>segment</code>.
138    * @return The non-null value for this reference.
139    * @exception JmiException If the value cannot be retrieved for some reason.
140    */

141   public org.opencrx.kernel.model1.cci.Segment getSegment(
142   );
143
144 // ----------------------------------------------------------------------------
145
// Instance/IntfAttributeGetSet
146
// ----------------------------------------------------------------------------
147
/**
148    * @return A set containing all elements for this attribute.
149    * @exception JmiException If the values cannot be retrieved for some reason.
150    */

151   public java.util.Set JavaDoc getStereotype(
152   );
153
154 // ----------------------------------------------------------------------------
155
// Instance/IntfAttributeSetSet
156
// ----------------------------------------------------------------------------
157
/**
158    * @param newValue A set containing all the new elements for this attribute.
159    * @exception JmiException If the values cannot be set for some reason.
160    */

161   public void setStereotype(
162     java.util.Set JavaDoc newValue
163   );
164 // ----------------------------------------------------------------------------
165
// Instance/IntfEnd.vm
166
// ----------------------------------------------------------------------------
167
}
168
Popular Tags