KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > opencrx > kernel > product1 > cci > SalesTaxType


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:52 CEST 2006
9
//
10
// GENERATED - DO NOT CHANGE MANUALLY
11
//
12
//////////////////////////////////////////////////////////////////////////////
13
package org.opencrx.kernel.product1.cci;
14
15 public interface SalesTaxType
16   extends
17  org.opencrx.kernel.generic.cci.CrxObject,
18  org.opencrx.kernel.generic.cci.DescriptionContainer {
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/IntfAttributeSet0_1
31
// ----------------------------------------------------------------------------
32

33
34   /**
35    * Sets a new value for the attribute <code>description</code>.
36    * @param newValue The possibly null new value for attribute <code>description</code>.
37    * @exception JmiException If the value cannot be set for some reason.
38    */

39   public void setDescription(
40     String JavaDoc newValue
41   );
42
43 // ----------------------------------------------------------------------------
44
// Instance/IntfAttributeGet0_1
45
// ----------------------------------------------------------------------------
46
/**
47    * @return The possibly null value for attribute <code>detailedDescription</code>.
48    * @exception JmiException If the value cannot be retrieved for some reason.
49    */

50   public String JavaDoc getDetailedDescription(
51   );
52
53 // ----------------------------------------------------------------------------
54
// Instance/IntfAttributeSet0_1
55
// ----------------------------------------------------------------------------
56

57
58   /**
59    * Sets a new value for the attribute <code>detailedDescription</code>.
60    * @param newValue The possibly null new value for attribute <code>detailedDescription</code>.
61    * @exception JmiException If the value cannot be set for some reason.
62    */

63   public void setDetailedDescription(
64     String JavaDoc newValue
65   );
66
67 // ----------------------------------------------------------------------------
68
// Instance/IntfAttributeGet1_1
69
// ----------------------------------------------------------------------------
70
/**
71    * Retrieves the value for the attribute <code>name</code>.
72    * @return The non-null value for attribute <code>name</code>.
73    * @exception JmiException If the value cannot be retrieved for some reason.
74    */

75   public String JavaDoc getName(
76   );
77
78 // ----------------------------------------------------------------------------
79
// Instance/IntfAttributeSet1_1
80
// ----------------------------------------------------------------------------
81
/**
82    * Sets a new value for the attribute <code>name</code>.
83    * @param newValue The non-null new value for attribute <code>name</code>.
84    * @exception JmiException If the value cannot be set for some reason.
85    */

86   public void setName(
87     String JavaDoc newValue
88   );
89
90 // ----------------------------------------------------------------------------
91
// Instance/IntfAttributeGet1_1
92
// ----------------------------------------------------------------------------
93
/**
94    * Retrieves the value for the attribute <code>rate</code>.
95    * @return The non-null value for attribute <code>rate</code>.
96    * @exception JmiException If the value cannot be retrieved for some reason.
97    */

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

109   public void setRate(
110     java.math.BigDecimal JavaDoc newValue
111   );
112
113 // ----------------------------------------------------------------------------
114
// Instance/IntfEnd.vm
115
// ----------------------------------------------------------------------------
116
}
117
Popular Tags