KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > opencrx > kernel > product1 > cci > AbstractProductConfiguration


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:51 CEST 2006
9
//
10
// GENERATED - DO NOT CHANGE MANUALLY
11
//
12
//////////////////////////////////////////////////////////////////////////////
13
package org.opencrx.kernel.product1.cci;
14
15 public interface AbstractProductConfiguration
16   extends
17  org.opencrx.kernel.base.cci.PropertySet,
18  org.opencrx.kernel.base.cci.SecureObject,
19  org.openmdx.base.cci.BasicObject {
20 // ----------------------------------------------------------------------------
21
// Instance/IntfAttributeGet0_1
22
// ----------------------------------------------------------------------------
23
/**
24    * @return The possibly null value for attribute <code>description</code>.
25    * @exception JmiException If the value cannot be retrieved for some reason.
26    */

27   public String JavaDoc getDescription(
28   );
29
30 // ----------------------------------------------------------------------------
31
// Instance/IntfAttributeSet0_1
32
// ----------------------------------------------------------------------------
33

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

40   public void setDescription(
41     String JavaDoc newValue
42   );
43
44 // ----------------------------------------------------------------------------
45
// Instance/IntfAttributeGet0_1
46
// ----------------------------------------------------------------------------
47
/**
48    * @return The possibly null value for attribute <code>isDefault</code>.
49    * @exception JmiException If the value cannot be retrieved for some reason.
50    */

51   public Boolean JavaDoc isDefault(
52   );
53
54 // ----------------------------------------------------------------------------
55
// Instance/IntfAttributeSet0_1
56
// ----------------------------------------------------------------------------
57

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

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

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

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

98   public java.util.Date JavaDoc getValidFrom(
99   );
100
101 // ----------------------------------------------------------------------------
102
// Instance/IntfAttributeSet0_1
103
// ----------------------------------------------------------------------------
104

105
106   /**
107    * Sets a new value for the attribute <code>validFrom</code>.
108    * @param newValue The possibly null new value for attribute <code>validFrom</code>.
109    * @exception JmiException If the value cannot be set for some reason.
110    */

111   public void setValidFrom(
112     java.util.Date JavaDoc newValue
113   );
114
115 // ----------------------------------------------------------------------------
116
// Instance/IntfAttributeGet0_1
117
// ----------------------------------------------------------------------------
118
/**
119    * @return The possibly null value for attribute <code>validTo</code>.
120    * @exception JmiException If the value cannot be retrieved for some reason.
121    */

122   public java.util.Date JavaDoc getValidTo(
123   );
124
125 // ----------------------------------------------------------------------------
126
// Instance/IntfAttributeSet0_1
127
// ----------------------------------------------------------------------------
128

129
130   /**
131    * Sets a new value for the attribute <code>validTo</code>.
132    * @param newValue The possibly null new value for attribute <code>validTo</code>.
133    * @exception JmiException If the value cannot be set for some reason.
134    */

135   public void setValidTo(
136     java.util.Date JavaDoc newValue
137   );
138
139 // ----------------------------------------------------------------------------
140
// Instance/IntfEnd.vm
141
// ----------------------------------------------------------------------------
142
}
143
Popular Tags