KickJava   Java API By Example, From Geeks To Geeks.

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


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

26   public boolean isAllowCreditBookings(
27   );
28
29 // ----------------------------------------------------------------------------
30
// Instance/IntfAttributeSet1_1
31
// ----------------------------------------------------------------------------
32
/**
33    * Sets a new value for the attribute <code>allowCreditBookings</code>.
34    * @param newValue The non-null new value for attribute <code>allowCreditBookings</code>.
35    * @exception JmiException If the value cannot be set for some reason.
36    */

37   public void setAllowCreditBookings(
38     boolean newValue
39   );
40
41 // ----------------------------------------------------------------------------
42
// Instance/IntfAttributeGet1_1
43
// ----------------------------------------------------------------------------
44
/**
45    * Retrieves the value for the attribute <code>allowDebitBookings</code>.
46    * @return The non-null value for attribute <code>allowDebitBookings</code>.
47    * @exception JmiException If the value cannot be retrieved for some reason.
48    */

49   public boolean isAllowDebitBookings(
50   );
51
52 // ----------------------------------------------------------------------------
53
// Instance/IntfAttributeSet1_1
54
// ----------------------------------------------------------------------------
55
/**
56    * Sets a new value for the attribute <code>allowDebitBookings</code>.
57    * @param newValue The non-null new value for attribute <code>allowDebitBookings</code>.
58    * @exception JmiException If the value cannot be set for some reason.
59    */

60   public void setAllowDebitBookings(
61     boolean newValue
62   );
63
64 // ----------------------------------------------------------------------------
65
// Instance/IntfReferenceGet0_1WithQualifier
66
// ----------------------------------------------------------------------------
67
/**
68    * Retrieves the value for the reference <code>compatibleTo</code> for the
69    * specified qualifier attribute value.
70    * @param index The value for the qualifier attribute that qualifies this reference.
71    * @return The possibly null value for this reference.
72    * @exception JmiException If the value cannot be retrieved for some reason.
73    */

74   public org.opencrx.kernel.depot1.cci.DepotType getCompatibleTo(
75     int index
76   );
77
78 // ----------------------------------------------------------------------------
79
// Instance/IntfReferenceGet0_nNoFilter
80
// ----------------------------------------------------------------------------
81
/**
82    * Retrieves the objects referenced by <code>compatibleTo</code>.
83    * @return The collection of referenced objects.
84    * @exception JmiException If the value cannot be retrieved for some reason.
85    */

86   public java.util.Collection JavaDoc getCompatibleTo(
87   );
88
89 // ----------------------------------------------------------------------------
90
// Instance/IntfReferenceAddWithQualifier
91
// ----------------------------------------------------------------------------
92
/**
93    * @param index The qualifier attribute value that qualifies the reference to get the element to be appended.
94    * @param newValue The element to be appended.
95    * @exception JmiException If the value cannot be appended for some reason.
96    */

97   public void addCompatibleTo (
98     int index,
99     org.opencrx.kernel.depot1.cci.DepotType newValue
100   );
101
102 // ----------------------------------------------------------------------------
103
// Instance/IntfReferenceAddWithoutQualifier
104
// ----------------------------------------------------------------------------
105
/**
106    * @param newValue The element to be appended.
107    * @exception JmiException If the value cannot be appended for some reason.
108    */

109   public void addCompatibleTo (
110     org.opencrx.kernel.depot1.cci.DepotType newValue
111   );
112
113 // ----------------------------------------------------------------------------
114
// Instance/IntfReferenceRemoveWithQualifier
115
// ----------------------------------------------------------------------------
116
/**
117    * @exception JmiException If the value cannot be removed for some reason.
118    */

119   public void removeCompatibleTo (
120     int index
121   );
122 // ----------------------------------------------------------------------------
123
// Instance/IntfAttributeGet0_1
124
// ----------------------------------------------------------------------------
125
/**
126    * @return The possibly null value for attribute <code>description</code>.
127    * @exception JmiException If the value cannot be retrieved for some reason.
128    */

129   public String JavaDoc getDescription(
130   );
131
132 // ----------------------------------------------------------------------------
133
// Instance/IntfAttributeSet0_1
134
// ----------------------------------------------------------------------------
135

136
137   /**
138    * Sets a new value for the attribute <code>description</code>.
139    * @param newValue The possibly null new value for attribute <code>description</code>.
140    * @exception JmiException If the value cannot be set for some reason.
141    */

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

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

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