KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > opencrx > kernel > forecast1 > cci > Forecast


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.forecast1.cci;
14
15 public interface Forecast
16   extends
17  org.opencrx.kernel.generic.cci.CrxObject,
18  org.openmdx.base.cci.BasicObject {
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/IntfReferenceGet0_1WithQualifier
31
// ----------------------------------------------------------------------------
32
/**
33    * Retrieves the value for the reference <code>forecastPeriod</code> for
34    * the specified qualifier attribute value.
35    * @param periodQualifier The value for the qualifier attribute that qualifies this reference.
36    * @return The possibly null value for this reference.
37    * @exception JmiException If the value cannot be retrieved for some reason.
38    */

39   public org.opencrx.kernel.forecast1.cci.ForecastPeriod getForecastPeriod(
40     String JavaDoc periodQualifier
41   );
42
43 // ----------------------------------------------------------------------------
44
// Instance/IntfReferenceGet0_nWithFilter
45
// ----------------------------------------------------------------------------
46
/**
47    * Retrieves a collection containing all the elements for the reference
48    * <code>forecastPeriod</code>.
49    * @return A collection containing all the elements for this reference.
50    * @exception JmiException If the values cannot be retrieved for some reason.
51    */

52   public java.util.Collection JavaDoc getForecastPeriod(
53   );
54
55   /**
56    * Retrieves the value for the reference <code>forecastPeriod</code> for
57    * the specified filter.
58    * @param filter filter which is applied to the set of referenced objects.
59    * @return The filtered collection of referenced objects.
60    * @exception JmiException If the value cannot be retrieved for some reason.
61    */

62   public java.util.List JavaDoc getForecastPeriod(
63     org.opencrx.kernel.forecast1.cci.ForecastPeriodFilter filter
64   );
65
66 // ----------------------------------------------------------------------------
67
// Instance/IntfReferenceAddWithQualifier
68
// ----------------------------------------------------------------------------
69
/**
70    * @param periodQualifier The qualifier attribute value that qualifies the reference to get the element to be appended.
71    * @param newValue The element to be appended.
72    * @exception JmiException If the value cannot be appended for some reason.
73    */

74   public void addForecastPeriod (
75     String JavaDoc periodQualifier,
76     org.opencrx.kernel.forecast1.cci.ForecastPeriod newValue
77   );
78
79 // ----------------------------------------------------------------------------
80
// Instance/IntfReferenceAddWithoutQualifier
81
// ----------------------------------------------------------------------------
82
/**
83    * @param newValue The element to be appended.
84    * @exception JmiException If the value cannot be appended for some reason.
85    */

86   public void addForecastPeriod (
87     org.opencrx.kernel.forecast1.cci.ForecastPeriod newValue
88   );
89
90 // ----------------------------------------------------------------------------
91
// Instance/IntfReferenceRemoveWithQualifier
92
// ----------------------------------------------------------------------------
93
/**
94    * @exception JmiException If the value cannot be removed for some reason.
95    */

96   public void removeForecastPeriod (
97     String JavaDoc periodQualifier
98   );
99 // ----------------------------------------------------------------------------
100
// Instance/IntfAttributeGet1_1
101
// ----------------------------------------------------------------------------
102
/**
103    * Retrieves the value for the attribute <code>name</code>.
104    * @return The non-null value for attribute <code>name</code>.
105    * @exception JmiException If the value cannot be retrieved for some reason.
106    */

107   public String JavaDoc getName(
108   );
109
110 // ----------------------------------------------------------------------------
111
// Instance/IntfReferenceGet0_1NoQualifier
112
// ----------------------------------------------------------------------------
113
/**
114    * Retrieves the value for the optional reference <code>organizationalUnit</code>.
115    * @return The possibly null value for this reference.
116    * @exception JmiException If the value cannot be retrieved for some reason.
117    */

118   public org.opencrx.kernel.account1.cci.OrganizationalUnit getOrganizationalUnit(
119   );
120
121 // ----------------------------------------------------------------------------
122
// Instance/IntfReferenceSetNoQualifier
123
// ----------------------------------------------------------------------------
124
/**
125    * Sets a new value for the reference <code>organizationalUnit</code>.
126    * @param newValue The non-null new value for this reference.
127    * @exception JmiException If the value cannot be set for some reason.
128    */

129   public void setOrganizationalUnit(
130     org.opencrx.kernel.account1.cci.OrganizationalUnit newValue
131   );
132
133 // ----------------------------------------------------------------------------
134
// Instance/IntfReferenceRemoveOptional
135
// ----------------------------------------------------------------------------
136
/**
137    * Removes the value for the optional reference <code>organizationalUnit</code>.
138    * @exception JmiException If the value cannot be removed for some reason.
139    */

140   public void removeOrganizationalUnit (
141   );
142
143 // ----------------------------------------------------------------------------
144
// Instance/IntfEnd.vm
145
// ----------------------------------------------------------------------------
146
}
147
Popular Tags