KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > opencrx > kernel > account1 > cci > Group


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:54 CEST 2006
9
//
10
// GENERATED - DO NOT CHANGE MANUALLY
11
//
12
//////////////////////////////////////////////////////////////////////////////
13
package org.opencrx.kernel.account1.cci;
14
15 public interface Group
16   extends
17  org.opencrx.kernel.account1.cci.Account,
18  org.opencrx.kernel.generic.cci.CrxObject {
19 // ----------------------------------------------------------------------------
20
// Instance/IntfReferenceGet0_1WithQualifier
21
// ----------------------------------------------------------------------------
22
/**
23    * Retrieves the value for the reference <code>member</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.account1.cci.Member getMember(
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>member</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 getMember(
43   );
44
45   /**
46    * Retrieves the value for the reference <code>member</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 getMember(
53     org.opencrx.kernel.account1.cci.MemberFilter 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 addMember (
65     String JavaDoc id,
66     org.opencrx.kernel.account1.cci.Member 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 addMember (
77     org.opencrx.kernel.account1.cci.Member 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 removeMember (
87     String JavaDoc id
88   );
89 // ----------------------------------------------------------------------------
90
// Instance/IntfAttributeGet1_1
91
// ----------------------------------------------------------------------------
92
/**
93    * Retrieves the value for the attribute <code>name</code>.
94    * @return The non-null value for attribute <code>name</code>.
95    * @exception JmiException If the value cannot be retrieved for some reason.
96    */

97   public String JavaDoc getName(
98   );
99
100 // ----------------------------------------------------------------------------
101
// Instance/IntfAttributeSet1_1
102
// ----------------------------------------------------------------------------
103
/**
104    * Sets a new value for the attribute <code>name</code>.
105    * @param newValue The non-null new value for attribute <code>name</code>.
106    * @exception JmiException If the value cannot be set for some reason.
107    */

108   public void setName(
109     String JavaDoc newValue
110   );
111
112 // ----------------------------------------------------------------------------
113
// Instance/IntfEnd.vm
114
// ----------------------------------------------------------------------------
115
}
116
Popular Tags