KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > opencrx > kernel > depot1 > cci > DepotEntityRelationship


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:56 CEST 2006
9
//
10
// GENERATED - DO NOT CHANGE MANUALLY
11
//
12
//////////////////////////////////////////////////////////////////////////////
13
package org.opencrx.kernel.depot1.cci;
14
15 public interface DepotEntityRelationship
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>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_1NoQualifier
44
// ----------------------------------------------------------------------------
45
/**
46    * Retrieves the value for the optional reference <code>entity1</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.depot1.cci.DepotEntity getEntity1(
51   );
52
53 // ----------------------------------------------------------------------------
54
// Instance/IntfReferenceSetNoQualifier
55
// ----------------------------------------------------------------------------
56
/**
57    * Sets a new value for the reference <code>entity1</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 setEntity1(
62     org.opencrx.kernel.depot1.cci.DepotEntity newValue
63   );
64
65 // ----------------------------------------------------------------------------
66
// Instance/IntfReferenceRemoveOptional
67
// ----------------------------------------------------------------------------
68
/**
69    * Removes the value for the optional reference <code>entity1</code>.
70    * @exception JmiException If the value cannot be removed for some reason.
71    */

72   public void removeEntity1 (
73   );
74
75 // ----------------------------------------------------------------------------
76
// Instance/IntfReferenceGet0_1NoQualifier
77
// ----------------------------------------------------------------------------
78
/**
79    * Retrieves the value for the optional reference <code>entity2</code>.
80    * @return The possibly null value for this reference.
81    * @exception JmiException If the value cannot be retrieved for some reason.
82    */

83   public org.opencrx.kernel.depot1.cci.DepotEntity getEntity2(
84   );
85
86 // ----------------------------------------------------------------------------
87
// Instance/IntfReferenceSetNoQualifier
88
// ----------------------------------------------------------------------------
89
/**
90    * Sets a new value for the reference <code>entity2</code>.
91    * @param newValue The non-null new value for this reference.
92    * @exception JmiException If the value cannot be set for some reason.
93    */

94   public void setEntity2(
95     org.opencrx.kernel.depot1.cci.DepotEntity newValue
96   );
97
98 // ----------------------------------------------------------------------------
99
// Instance/IntfReferenceRemoveOptional
100
// ----------------------------------------------------------------------------
101
/**
102    * Removes the value for the optional reference <code>entity2</code>.
103    * @exception JmiException If the value cannot be removed for some reason.
104    */

105   public void removeEntity2 (
106   );
107
108 // ----------------------------------------------------------------------------
109
// Instance/IntfAttributeGet1_1
110
// ----------------------------------------------------------------------------
111
/**
112    * Retrieves the value for the attribute <code>name</code>.
113    * @return The non-null value for attribute <code>name</code>.
114    * @exception JmiException If the value cannot be retrieved for some reason.
115    */

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

127   public void setName(
128     String JavaDoc newValue
129   );
130
131 // ----------------------------------------------------------------------------
132
// Instance/IntfAttributeGet1_1
133
// ----------------------------------------------------------------------------
134
/**
135    * Retrieves the value for the attribute <code>relationshipType</code>.
136    * @return The non-null value for attribute <code>relationshipType</code>.
137    * @exception JmiException If the value cannot be retrieved for some reason.
138    */

139   public short getRelationshipType(
140   );
141
142 // ----------------------------------------------------------------------------
143
// Instance/IntfAttributeSet1_1
144
// ----------------------------------------------------------------------------
145
/**
146    * Sets a new value for the attribute <code>relationshipType</code>.
147    * @param newValue The non-null new value for attribute <code>relationshipType</code>.
148    * @exception JmiException If the value cannot be set for some reason.
149    */

150   public void setRelationshipType(
151     short newValue
152   );
153
154 // ----------------------------------------------------------------------------
155
// Instance/IntfEnd.vm
156
// ----------------------------------------------------------------------------
157
}
158
Popular Tags