View Javadoc

1   //
2   // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.2-b01-fcs 
3   // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
4   // Any modifications to this file will be lost upon recompilation of the source schema. 
5   // Generated on: 2007.04.05 at 10:47:13 AM CEST 
6   //
7   
8   
9   package com.amazon.webservices.awsecommerceservice._2007_04_04;
10  
11  import javax.xml.bind.annotation.XmlAccessType;
12  import javax.xml.bind.annotation.XmlAccessorType;
13  import javax.xml.bind.annotation.XmlElement;
14  import javax.xml.bind.annotation.XmlRootElement;
15  import javax.xml.bind.annotation.XmlType;
16  
17  
18  /**
19   * <p>Java class for anonymous complex type.
20   * 
21   * <p>The following schema fragment specifies the expected content contained within this class.
22   * 
23   * <pre>
24   * &lt;complexType>
25   *   &lt;complexContent>
26   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27   *       &lt;sequence>
28   *         &lt;element name="ListItemId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
29   *         &lt;element name="DateAdded" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
30   *         &lt;element name="Comment" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
31   *         &lt;element name="QuantityDesired" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
32   *         &lt;element name="QuantityReceived" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
33   *         &lt;element ref="{http://webservices.amazon.com/AWSECommerceService/2007-04-04}Item" minOccurs="0"/>
34   *       &lt;/sequence>
35   *     &lt;/restriction>
36   *   &lt;/complexContent>
37   * &lt;/complexType>
38   * </pre>
39   * 
40   * 
41   */
42  @XmlAccessorType(XmlAccessType.FIELD)
43  @XmlType(name = "", propOrder = {
44      "listItemId",
45      "dateAdded",
46      "comment",
47      "quantityDesired",
48      "quantityReceived",
49      "item"
50  })
51  @XmlRootElement(name = "ListItem")
52  public class ListItem {
53  
54      @XmlElement(name = "ListItemId")
55      protected String listItemId;
56      @XmlElement(name = "DateAdded")
57      protected String dateAdded;
58      @XmlElement(name = "Comment")
59      protected String comment;
60      @XmlElement(name = "QuantityDesired")
61      protected String quantityDesired;
62      @XmlElement(name = "QuantityReceived")
63      protected String quantityReceived;
64      @XmlElement(name = "Item")
65      protected Item item;
66  
67      /**
68       * Gets the value of the listItemId property.
69       * 
70       * @return
71       *     possible object is
72       *     {@link String }
73       *     
74       */
75      public String getListItemId() {
76          return listItemId;
77      }
78  
79      /**
80       * Sets the value of the listItemId property.
81       * 
82       * @param value
83       *     allowed object is
84       *     {@link String }
85       *     
86       */
87      public void setListItemId(String value) {
88          this.listItemId = value;
89      }
90  
91      /**
92       * Gets the value of the dateAdded property.
93       * 
94       * @return
95       *     possible object is
96       *     {@link String }
97       *     
98       */
99      public String getDateAdded() {
100         return dateAdded;
101     }
102 
103     /**
104      * Sets the value of the dateAdded property.
105      * 
106      * @param value
107      *     allowed object is
108      *     {@link String }
109      *     
110      */
111     public void setDateAdded(String value) {
112         this.dateAdded = value;
113     }
114 
115     /**
116      * Gets the value of the comment property.
117      * 
118      * @return
119      *     possible object is
120      *     {@link String }
121      *     
122      */
123     public String getComment() {
124         return comment;
125     }
126 
127     /**
128      * Sets the value of the comment property.
129      * 
130      * @param value
131      *     allowed object is
132      *     {@link String }
133      *     
134      */
135     public void setComment(String value) {
136         this.comment = value;
137     }
138 
139     /**
140      * Gets the value of the quantityDesired property.
141      * 
142      * @return
143      *     possible object is
144      *     {@link String }
145      *     
146      */
147     public String getQuantityDesired() {
148         return quantityDesired;
149     }
150 
151     /**
152      * Sets the value of the quantityDesired property.
153      * 
154      * @param value
155      *     allowed object is
156      *     {@link String }
157      *     
158      */
159     public void setQuantityDesired(String value) {
160         this.quantityDesired = value;
161     }
162 
163     /**
164      * Gets the value of the quantityReceived property.
165      * 
166      * @return
167      *     possible object is
168      *     {@link String }
169      *     
170      */
171     public String getQuantityReceived() {
172         return quantityReceived;
173     }
174 
175     /**
176      * Sets the value of the quantityReceived property.
177      * 
178      * @param value
179      *     allowed object is
180      *     {@link String }
181      *     
182      */
183     public void setQuantityReceived(String value) {
184         this.quantityReceived = value;
185     }
186 
187     /**
188      * Gets the value of the item property.
189      * 
190      * @return
191      *     possible object is
192      *     {@link Item }
193      *     
194      */
195     public Item getItem() {
196         return item;
197     }
198 
199     /**
200      * Sets the value of the item property.
201      * 
202      * @param value
203      *     allowed object is
204      *     {@link Item }
205      *     
206      */
207     public void setItem(Item value) {
208         this.item = value;
209     }
210 
211 }