KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > opencrx > kernel > reservation1 > cci > Slot


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:06 CEST 2006
9
//
10
// GENERATED - DO NOT CHANGE MANUALLY
11
//
12
//////////////////////////////////////////////////////////////////////////////
13
package org.opencrx.kernel.reservation1.cci;
14
15 public interface Slot
16   extends
17  org.opencrx.kernel.generic.cci.CrxObject,
18  org.opencrx.kernel.generic.cci.DescriptionContainer {
19 // ----------------------------------------------------------------------------
20
// Instance/IntfReferenceGet0_1NoQualifier
21
// ----------------------------------------------------------------------------
22
/**
23    * Retrieves the value for the optional reference <code>bookedBy</code>.
24    * @return The possibly null value for this reference.
25    * @exception JmiException If the value cannot be retrieved for some reason.
26    */

27   public org.opencrx.kernel.account1.cci.Account getBookedBy(
28   );
29
30 // ----------------------------------------------------------------------------
31
// Instance/IntfReferenceSetNoQualifier
32
// ----------------------------------------------------------------------------
33
/**
34    * Sets a new value for the reference <code>bookedBy</code>.
35    * @param newValue The non-null new value for this reference.
36    * @exception JmiException If the value cannot be set for some reason.
37    */

38   public void setBookedBy(
39     org.opencrx.kernel.account1.cci.Account newValue
40   );
41
42 // ----------------------------------------------------------------------------
43
// Instance/IntfReferenceRemoveOptional
44
// ----------------------------------------------------------------------------
45
/**
46    * Removes the value for the optional reference <code>bookedBy</code>.
47    * @exception JmiException If the value cannot be removed for some reason.
48    */

49   public void removeBookedBy (
50   );
51
52 // ----------------------------------------------------------------------------
53
// Instance/IntfAttributeGet0_1
54
// ----------------------------------------------------------------------------
55
/**
56    * @return The possibly null value for attribute <code>description</code>.
57    * @exception JmiException If the value cannot be retrieved for some reason.
58    */

59   public String JavaDoc getDescription(
60   );
61
62 // ----------------------------------------------------------------------------
63
// Instance/IntfAttributeSet0_1
64
// ----------------------------------------------------------------------------
65

66
67   /**
68    * Sets a new value for the attribute <code>description</code>.
69    * @param newValue The possibly null new value for attribute <code>description</code>.
70    * @exception JmiException If the value cannot be set for some reason.
71    */

72   public void setDescription(
73     String JavaDoc newValue
74   );
75
76 // ----------------------------------------------------------------------------
77
// Instance/IntfAttributeGet1_1
78
// ----------------------------------------------------------------------------
79
/**
80    * Retrieves the value for the attribute <code>name</code>.
81    * @return The non-null value for attribute <code>name</code>.
82    * @exception JmiException If the value cannot be retrieved for some reason.
83    */

84   public String JavaDoc getName(
85   );
86
87 // ----------------------------------------------------------------------------
88
// Instance/IntfAttributeSet1_1
89
// ----------------------------------------------------------------------------
90
/**
91    * Sets a new value for the attribute <code>name</code>.
92    * @param newValue The non-null new value for attribute <code>name</code>.
93    * @exception JmiException If the value cannot be set for some reason.
94    */

95   public void setName(
96     String JavaDoc newValue
97   );
98
99 // ----------------------------------------------------------------------------
100
// Instance/IntfAttributeGet0_1
101
// ----------------------------------------------------------------------------
102
/**
103    * @return The possibly null value for attribute <code>number</code>.
104    * @exception JmiException If the value cannot be retrieved for some reason.
105    */

106   public String JavaDoc getNumber(
107   );
108
109 // ----------------------------------------------------------------------------
110
// Instance/IntfAttributeSet0_1
111
// ----------------------------------------------------------------------------
112

113
114   /**
115    * Sets a new value for the attribute <code>number</code>.
116    * @param newValue The possibly null new value for attribute <code>number</code>.
117    * @exception JmiException If the value cannot be set for some reason.
118    */

119   public void setNumber(
120     String JavaDoc newValue
121   );
122
123 // ----------------------------------------------------------------------------
124
// Instance/IntfReferenceGet0_1NoQualifier
125
// ----------------------------------------------------------------------------
126
/**
127    * Retrieves the value for the optional reference <code>sold</code>.
128    * @return The possibly null value for this reference.
129    * @exception JmiException If the value cannot be retrieved for some reason.
130    */

131   public org.opencrx.kernel.contract1.cci.ContractPosition getSold(
132   );
133
134 // ----------------------------------------------------------------------------
135
// Instance/IntfReferenceSetNoQualifier
136
// ----------------------------------------------------------------------------
137
/**
138    * Sets a new value for the reference <code>sold</code>.
139    * @param newValue The non-null new value for this reference.
140    * @exception JmiException If the value cannot be set for some reason.
141    */

142   public void setSold(
143     org.opencrx.kernel.contract1.cci.ContractPosition newValue
144   );
145
146 // ----------------------------------------------------------------------------
147
// Instance/IntfReferenceRemoveOptional
148
// ----------------------------------------------------------------------------
149
/**
150    * Removes the value for the optional reference <code>sold</code>.
151    * @exception JmiException If the value cannot be removed for some reason.
152    */

153   public void removeSold (
154   );
155
156 // ----------------------------------------------------------------------------
157
// Instance/IntfEnd.vm
158
// ----------------------------------------------------------------------------
159
}
160
Popular Tags