KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > opencrx > kernel > contract1 > cci > ShippingDetail


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:01 CEST 2006
9
//
10
// GENERATED - DO NOT CHANGE MANUALLY
11
//
12
//////////////////////////////////////////////////////////////////////////////
13
package org.opencrx.kernel.contract1.cci;
14
15 public interface ShippingDetail
16   extends org.openmdx.base.accessor.jmi.cci.RefObject_1_0
17  {
18 // ----------------------------------------------------------------------------
19
// Instance/IntfReferenceGet1_1NoQualifier
20
// ----------------------------------------------------------------------------
21
/**
22    * Retrieves the value for the reference <code>carrier</code>.
23    * @return The non-null value for this reference.
24    * @exception JmiException If the value cannot be retrieved for some reason.
25    */

26   public org.opencrx.kernel.account1.cci.Account getCarrier(
27   );
28
29 // ----------------------------------------------------------------------------
30
// Instance/IntfReferenceSetNoQualifier
31
// ----------------------------------------------------------------------------
32
/**
33    * Sets a new value for the reference <code>carrier</code>.
34    * @param newValue The non-null new value for this reference.
35    * @exception JmiException If the value cannot be set for some reason.
36    */

37   public void setCarrier(
38     org.opencrx.kernel.account1.cci.Account newValue
39   );
40
41 // ----------------------------------------------------------------------------
42
// Instance/IntfAttributeGet0_1
43
// ----------------------------------------------------------------------------
44
/**
45    * @return The possibly null value for attribute <code>giftMessage</code>.
46    * @exception JmiException If the value cannot be retrieved for some reason.
47    */

48   public String JavaDoc getGiftMessage(
49   );
50
51 // ----------------------------------------------------------------------------
52
// Instance/IntfAttributeSet0_1
53
// ----------------------------------------------------------------------------
54

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

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

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

84   public void setGift(
85     boolean newValue
86   );
87
88 // ----------------------------------------------------------------------------
89
// Instance/IntfAttributeGet0_1
90
// ----------------------------------------------------------------------------
91
/**
92    * @return The possibly null value for attribute <code>shippingInstructions</code>.
93    * @exception JmiException If the value cannot be retrieved for some reason.
94    */

95   public String JavaDoc getShippingInstructions(
96   );
97
98 // ----------------------------------------------------------------------------
99
// Instance/IntfAttributeSet0_1
100
// ----------------------------------------------------------------------------
101

102
103   /**
104    * Sets a new value for the attribute <code>shippingInstructions</code>.
105    * @param newValue The possibly null new value for attribute <code>shippingInstructions</code>.
106    * @exception JmiException If the value cannot be set for some reason.
107    */

108   public void setShippingInstructions(
109     String JavaDoc newValue
110   );
111
112 // ----------------------------------------------------------------------------
113
// Instance/IntfAttributeGet1_1
114
// ----------------------------------------------------------------------------
115
/**
116    * Retrieves the value for the attribute <code>shippingMethod</code>.
117    * @return The non-null value for attribute <code>shippingMethod</code>.
118    * @exception JmiException If the value cannot be retrieved for some reason.
119    */

120   public short getShippingMethod(
121   );
122
123 // ----------------------------------------------------------------------------
124
// Instance/IntfAttributeSet1_1
125
// ----------------------------------------------------------------------------
126
/**
127    * Sets a new value for the attribute <code>shippingMethod</code>.
128    * @param newValue The non-null new value for attribute <code>shippingMethod</code>.
129    * @exception JmiException If the value cannot be set for some reason.
130    */

131   public void setShippingMethod(
132     short newValue
133   );
134
135 // ----------------------------------------------------------------------------
136
// Instance/IntfAttributeGet0_1
137
// ----------------------------------------------------------------------------
138
/**
139    * @return The possibly null value for attribute <code>shippingTrackingNumber</code>.
140    * @exception JmiException If the value cannot be retrieved for some reason.
141    */

142   public String JavaDoc getShippingTrackingNumber(
143   );
144
145 // ----------------------------------------------------------------------------
146
// Instance/IntfAttributeSet0_1
147
// ----------------------------------------------------------------------------
148

149
150   /**
151    * Sets a new value for the attribute <code>shippingTrackingNumber</code>.
152    * @param newValue The possibly null new value for attribute <code>shippingTrackingNumber</code>.
153    * @exception JmiException If the value cannot be set for some reason.
154    */

155   public void setShippingTrackingNumber(
156     String JavaDoc newValue
157   );
158
159 // ----------------------------------------------------------------------------
160
// Instance/IntfEnd.vm
161
// ----------------------------------------------------------------------------
162
}
163
Popular Tags