KickJava   Java API By Example, From Geeks To Geeks.

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


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:55 CEST 2006
9
//
10
// GENERATED - DO NOT CHANGE MANUALLY
11
//
12
//////////////////////////////////////////////////////////////////////////////
13
package org.opencrx.kernel.account1.cci;
14
15 public interface AbstractFilterAccount
16   extends
17  org.opencrx.kernel.base.cci.AbstractFilter {
18 // ----------------------------------------------------------------------------
19
// Instance/IntfReferenceGet0_1WithQualifier
20
// ----------------------------------------------------------------------------
21
/**
22    * Retrieves the value for the reference
23    * <code>accountFilterProperty</code> for the specified qualifier
24    * 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.AccountFilterProperty getAccountFilterProperty(
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>accountFilterProperty</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 getAccountFilterProperty(
43   );
44
45   /**
46    * Retrieves the value for the reference
47    * <code>accountFilterProperty</code> for the 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 getAccountFilterProperty(
53     org.opencrx.kernel.account1.cci.AccountFilterPropertyFilter 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 addAccountFilterProperty (
65     String JavaDoc id,
66     org.opencrx.kernel.account1.cci.AccountFilterProperty 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 addAccountFilterProperty (
77     org.opencrx.kernel.account1.cci.AccountFilterProperty 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 removeAccountFilterProperty (
87     String JavaDoc id
88   );
89 // ----------------------------------------------------------------------------
90
// Instance/IntfReferenceGet0_1WithQualifier
91
// ----------------------------------------------------------------------------
92
/**
93    * Retrieves the value for the reference <code>filteredAccount</code> for
94    * the specified qualifier attribute value.
95    * @param id The value for the qualifier attribute that qualifies this reference.
96    * @return The possibly null value for this reference.
97    * @exception JmiException If the value cannot be retrieved for some reason.
98    */

99   public org.opencrx.kernel.account1.cci.Account getFilteredAccount(
100     String JavaDoc id
101   );
102
103 // ----------------------------------------------------------------------------
104
// Instance/IntfReferenceGet0_nWithFilter
105
// ----------------------------------------------------------------------------
106
/**
107    * Retrieves a collection containing all the elements for the reference
108    * <code>filteredAccount</code>.
109    * @return A collection containing all the elements for this reference.
110    * @exception JmiException If the values cannot be retrieved for some reason.
111    */

112   public java.util.Collection JavaDoc getFilteredAccount(
113   );
114
115   /**
116    * Retrieves the value for the reference <code>filteredAccount</code> for
117    * the specified filter.
118    * @param filter filter which is applied to the set of referenced objects.
119    * @return The filtered collection of referenced objects.
120    * @exception JmiException If the value cannot be retrieved for some reason.
121    */

122   public java.util.List JavaDoc getFilteredAccount(
123     org.opencrx.kernel.account1.cci.AccountFilter filter
124   );
125
126 // ----------------------------------------------------------------------------
127
// Instance/IntfEnd.vm
128
// ----------------------------------------------------------------------------
129
}
130
Popular Tags