KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > opencrx > kernel > activity1 > cci > Meeting


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:04 CEST 2006
9
//
10
// GENERATED - DO NOT CHANGE MANUALLY
11
//
12
//////////////////////////////////////////////////////////////////////////////
13
package org.opencrx.kernel.activity1.cci;
14
15 public interface Meeting
16   extends
17  org.opencrx.kernel.activity1.cci.Activity,
18  org.opencrx.kernel.generic.cci.CrxObject {
19 // ----------------------------------------------------------------------------
20
// Instance/IntfOperation
21
// ----------------------------------------------------------------------------
22

23   public org.opencrx.kernel.base.cci.ExportResult exportICalendar(
24       org.opencrx.kernel.activity1.cci.ExportICalendarParams params
25   ) throws javax.jmi.reflect.RefException ;
26
27   /**
28    */

29   public org.opencrx.kernel.base.cci.ExportResult exportICalendar(
30       short locale
31   ) throws javax.jmi.reflect.RefException ;
32
33 // ----------------------------------------------------------------------------
34
// Instance/IntfAttributeGet0_1
35
// ----------------------------------------------------------------------------
36
/**
37    * @return The possibly null value for attribute <code>isAllDayEvent</code>.
38    * @exception JmiException If the value cannot be retrieved for some reason.
39    */

40   public Boolean JavaDoc isAllDayEvent(
41   );
42
43 // ----------------------------------------------------------------------------
44
// Instance/IntfAttributeSet0_1
45
// ----------------------------------------------------------------------------
46

47
48   /**
49    * Sets a new value for the attribute <code>isAllDayEvent</code>.
50    * @param newValue The possibly null new value for attribute <code>isAllDayEvent</code>.
51    * @exception JmiException If the value cannot be set for some reason.
52    */

53   public void setAllDayEvent(
54     Boolean JavaDoc newValue
55   );
56
57 // ----------------------------------------------------------------------------
58
// Instance/IntfAttributeGet0_1
59
// ----------------------------------------------------------------------------
60
/**
61    * @return The possibly null value for attribute <code>location</code>.
62    * @exception JmiException If the value cannot be retrieved for some reason.
63    */

64   public String JavaDoc getLocation(
65   );
66
67 // ----------------------------------------------------------------------------
68
// Instance/IntfAttributeSet0_1
69
// ----------------------------------------------------------------------------
70

71
72   /**
73    * Sets a new value for the attribute <code>location</code>.
74    * @param newValue The possibly null new value for attribute <code>location</code>.
75    * @exception JmiException If the value cannot be set for some reason.
76    */

77   public void setLocation(
78     String JavaDoc newValue
79   );
80
81 // ----------------------------------------------------------------------------
82
// Instance/IntfReferenceGet0_1WithQualifier
83
// ----------------------------------------------------------------------------
84
/**
85    * Retrieves the value for the reference <code>meetingParty</code> for the
86    * specified qualifier attribute value.
87    * @param id The value for the qualifier attribute that qualifies this reference.
88    * @return The possibly null value for this reference.
89    * @exception JmiException If the value cannot be retrieved for some reason.
90    */

91   public org.opencrx.kernel.activity1.cci.MeetingParty getMeetingParty(
92     String JavaDoc id
93   );
94
95 // ----------------------------------------------------------------------------
96
// Instance/IntfReferenceGet0_nWithFilter
97
// ----------------------------------------------------------------------------
98
/**
99    * Retrieves a collection containing all the elements for the reference
100    * <code>meetingParty</code>.
101    * @return A collection containing all the elements for this reference.
102    * @exception JmiException If the values cannot be retrieved for some reason.
103    */

104   public java.util.Collection JavaDoc getMeetingParty(
105   );
106
107   /**
108    * Retrieves the value for the reference <code>meetingParty</code> for the
109    * specified filter.
110    * @param filter filter which is applied to the set of referenced objects.
111    * @return The filtered collection of referenced objects.
112    * @exception JmiException If the value cannot be retrieved for some reason.
113    */

114   public java.util.List JavaDoc getMeetingParty(
115     org.opencrx.kernel.activity1.cci.MeetingPartyFilter filter
116   );
117
118 // ----------------------------------------------------------------------------
119
// Instance/IntfReferenceAddWithQualifier
120
// ----------------------------------------------------------------------------
121
/**
122    * @param id The qualifier attribute value that qualifies the reference to get the element to be appended.
123    * @param newValue The element to be appended.
124    * @exception JmiException If the value cannot be appended for some reason.
125    */

126   public void addMeetingParty (
127     String JavaDoc id,
128     org.opencrx.kernel.activity1.cci.MeetingParty newValue
129   );
130
131 // ----------------------------------------------------------------------------
132
// Instance/IntfReferenceAddWithoutQualifier
133
// ----------------------------------------------------------------------------
134
/**
135    * @param newValue The element to be appended.
136    * @exception JmiException If the value cannot be appended for some reason.
137    */

138   public void addMeetingParty (
139     org.opencrx.kernel.activity1.cci.MeetingParty newValue
140   );
141
142 // ----------------------------------------------------------------------------
143
// Instance/IntfReferenceRemoveWithQualifier
144
// ----------------------------------------------------------------------------
145
/**
146    * @exception JmiException If the value cannot be removed for some reason.
147    */

148   public void removeMeetingParty (
149     String JavaDoc id
150   );
151 // ----------------------------------------------------------------------------
152
// Instance/IntfEnd.vm
153
// ----------------------------------------------------------------------------
154
}
155
Popular Tags