KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > opencrx > kernel > ras1 > cci > Profile


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.ras1.cci;
14
15 public interface Profile
16   extends
17  org.opencrx.kernel.generic.cci.CrxObject,
18  org.opencrx.kernel.generic.cci.DescriptionContainer {
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>idHistory</code>.
48    * @exception JmiException If the value cannot be retrieved for some reason.
49    */

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

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

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

75   public String JavaDoc getName(
76   );
77
78 // ----------------------------------------------------------------------------
79
// Instance/IntfAttributeSet1_1
80
// ----------------------------------------------------------------------------
81
/**
82    * Sets a new value for the attribute <code>name</code>.
83    * @param newValue The non-null new value for attribute <code>name</code>.
84    * @exception JmiException If the value cannot be set for some reason.
85    */

86   public void setName(
87     String JavaDoc newValue
88   );
89
90 // ----------------------------------------------------------------------------
91
// Instance/IntfReferenceGet0_1NoQualifier
92
// ----------------------------------------------------------------------------
93
/**
94    * Retrieves the value for the optional reference <code>parentProfile</code>.
95    * @return The possibly null value for this reference.
96    * @exception JmiException If the value cannot be retrieved for some reason.
97    */

98   public org.opencrx.kernel.ras1.cci.Profile getParentProfile(
99   );
100
101 // ----------------------------------------------------------------------------
102
// Instance/IntfReferenceSetNoQualifier
103
// ----------------------------------------------------------------------------
104
/**
105    * Sets a new value for the reference <code>parentProfile</code>.
106    * @param newValue The non-null new value for this reference.
107    * @exception JmiException If the value cannot be set for some reason.
108    */

109   public void setParentProfile(
110     org.opencrx.kernel.ras1.cci.Profile newValue
111   );
112
113 // ----------------------------------------------------------------------------
114
// Instance/IntfReferenceRemoveOptional
115
// ----------------------------------------------------------------------------
116
/**
117    * Removes the value for the optional reference <code>parentProfile</code>.
118    * @exception JmiException If the value cannot be removed for some reason.
119    */

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

131   public String JavaDoc getVersionMajor(
132   );
133
134 // ----------------------------------------------------------------------------
135
// Instance/IntfAttributeSet1_1
136
// ----------------------------------------------------------------------------
137
/**
138    * Sets a new value for the attribute <code>versionMajor</code>.
139    * @param newValue The non-null new value for attribute <code>versionMajor</code>.
140    * @exception JmiException If the value cannot be set for some reason.
141    */

142   public void setVersionMajor(
143     String JavaDoc newValue
144   );
145
146 // ----------------------------------------------------------------------------
147
// Instance/IntfAttributeGet1_1
148
// ----------------------------------------------------------------------------
149
/**
150    * Retrieves the value for the attribute <code>versionMinor</code>.
151    * @return The non-null value for attribute <code>versionMinor</code>.
152    * @exception JmiException If the value cannot be retrieved for some reason.
153    */

154   public String JavaDoc getVersionMinor(
155   );
156
157 // ----------------------------------------------------------------------------
158
// Instance/IntfAttributeSet1_1
159
// ----------------------------------------------------------------------------
160
/**
161    * Sets a new value for the attribute <code>versionMinor</code>.
162    * @param newValue The non-null new value for attribute <code>versionMinor</code>.
163    * @exception JmiException If the value cannot be set for some reason.
164    */

165   public void setVersionMinor(
166     String JavaDoc newValue
167   );
168
169 // ----------------------------------------------------------------------------
170
// Instance/IntfEnd.vm
171
// ----------------------------------------------------------------------------
172
}
173
Popular Tags