KickJava   Java API By Example, From Geeks To Geeks.

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


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:02 CEST 2006
9
//
10
// GENERATED - DO NOT CHANGE MANUALLY
11
//
12
//////////////////////////////////////////////////////////////////////////////
13
package org.opencrx.kernel.activity1.cci;
14
15 public interface Task
16   extends
17  org.opencrx.kernel.activity1.cci.Activity,
18  org.opencrx.kernel.generic.cci.CrxObject {
19 // ----------------------------------------------------------------------------
20
// Instance/IntfReferenceGet0_1WithQualifier
21
// ----------------------------------------------------------------------------
22
/**
23    * Retrieves the value for the reference <code>taskParty</code> for the
24    * specified qualifier attribute value.
25    * @param id The value for the qualifier attribute that qualifies this reference.
26    * @return The possibly null value for this reference.
27    * @exception JmiException If the value cannot be retrieved for some reason.
28    */

29   public org.opencrx.kernel.activity1.cci.TaskParty getTaskParty(
30     String JavaDoc id
31   );
32
33 // ----------------------------------------------------------------------------
34
// Instance/IntfReferenceGet0_nWithFilter
35
// ----------------------------------------------------------------------------
36
/**
37    * Retrieves a collection containing all the elements for the reference
38    * <code>taskParty</code>.
39    * @return A collection containing all the elements for this reference.
40    * @exception JmiException If the values cannot be retrieved for some reason.
41    */

42   public java.util.Collection JavaDoc getTaskParty(
43   );
44
45   /**
46    * Retrieves the value for the reference <code>taskParty</code> for the
47    * specified filter.
48    * @param filter filter which is applied to the set of referenced objects.
49    * @return The filtered collection of referenced objects.
50    * @exception JmiException If the value cannot be retrieved for some reason.
51    */

52   public java.util.List JavaDoc getTaskParty(
53     org.opencrx.kernel.activity1.cci.TaskPartyFilter filter
54   );
55
56 // ----------------------------------------------------------------------------
57
// Instance/IntfReferenceAddWithQualifier
58
// ----------------------------------------------------------------------------
59
/**
60    * @param id The qualifier attribute value that qualifies the reference to get the element to be appended.
61    * @param newValue The element to be appended.
62    * @exception JmiException If the value cannot be appended for some reason.
63    */

64   public void addTaskParty (
65     String JavaDoc id,
66     org.opencrx.kernel.activity1.cci.TaskParty newValue
67   );
68
69 // ----------------------------------------------------------------------------
70
// Instance/IntfReferenceAddWithoutQualifier
71
// ----------------------------------------------------------------------------
72
/**
73    * @param newValue The element to be appended.
74    * @exception JmiException If the value cannot be appended for some reason.
75    */

76   public void addTaskParty (
77     org.opencrx.kernel.activity1.cci.TaskParty newValue
78   );
79
80 // ----------------------------------------------------------------------------
81
// Instance/IntfReferenceRemoveWithQualifier
82
// ----------------------------------------------------------------------------
83
/**
84    * @exception JmiException If the value cannot be removed for some reason.
85    */

86   public void removeTaskParty (
87     String JavaDoc id
88   );
89 // ----------------------------------------------------------------------------
90
// Instance/IntfEnd.vm
91
// ----------------------------------------------------------------------------
92
}
93
Popular Tags