| 9777 |
manish.sha |
1 |
//
|
|
|
2 |
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10
|
|
|
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: 2014.02.05 at 12:01:10 PM IST
|
|
|
6 |
//
|
|
|
7 |
|
|
|
8 |
|
|
|
9 |
package com.amazonaws.mws.model;
|
|
|
10 |
|
|
|
11 |
import java.util.ArrayList;
|
|
|
12 |
import java.util.List;
|
|
|
13 |
import javax.xml.bind.annotation.XmlAccessType;
|
|
|
14 |
import javax.xml.bind.annotation.XmlAccessorType;
|
|
|
15 |
import javax.xml.bind.annotation.XmlElement;
|
|
|
16 |
import javax.xml.bind.annotation.XmlType;
|
|
|
17 |
|
|
|
18 |
|
|
|
19 |
/**
|
|
|
20 |
* <p>Java class for anonymous complex type.
|
|
|
21 |
*
|
|
|
22 |
* <p>The following schema fragment specifies the expected content contained within this class.
|
|
|
23 |
*
|
|
|
24 |
* <pre>
|
|
|
25 |
* <complexType>
|
|
|
26 |
* <complexContent>
|
|
|
27 |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
|
28 |
* <sequence>
|
|
|
29 |
* <element name="Component" maxOccurs="unbounded" minOccurs="0">
|
|
|
30 |
* <complexType>
|
|
|
31 |
* <complexContent>
|
|
|
32 |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
|
33 |
* <sequence>
|
|
|
34 |
* <element name="Type" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
|
|
35 |
* <element name="Amount">
|
|
|
36 |
* <complexType>
|
|
|
37 |
* <simpleContent>
|
|
|
38 |
* <extension base="<http://www.w3.org/2001/XMLSchema>float">
|
|
|
39 |
* <attribute name="currency" type="{http://www.w3.org/2001/XMLSchema}string" />
|
|
|
40 |
* </extension>
|
|
|
41 |
* </simpleContent>
|
|
|
42 |
* </complexType>
|
|
|
43 |
* </element>
|
|
|
44 |
* </sequence>
|
|
|
45 |
* </restriction>
|
|
|
46 |
* </complexContent>
|
|
|
47 |
* </complexType>
|
|
|
48 |
* </element>
|
|
|
49 |
* </sequence>
|
|
|
50 |
* </restriction>
|
|
|
51 |
* </complexContent>
|
|
|
52 |
* </complexType>
|
|
|
53 |
* </pre>
|
|
|
54 |
*
|
|
|
55 |
*
|
|
|
56 |
*/
|
|
|
57 |
@XmlAccessorType(XmlAccessType.FIELD)
|
|
|
58 |
@XmlType(name = "", propOrder = {
|
|
|
59 |
"component"
|
|
|
60 |
})
|
|
|
61 |
public class ItemPrice {
|
|
|
62 |
|
|
|
63 |
@XmlElement(name = "Component")
|
|
|
64 |
protected List<Component> component;
|
|
|
65 |
|
|
|
66 |
/**
|
|
|
67 |
* Gets the value of the component property.
|
|
|
68 |
*
|
|
|
69 |
* <p>
|
|
|
70 |
* This accessor method returns a reference to the live list,
|
|
|
71 |
* not a snapshot. Therefore any modification you make to the
|
|
|
72 |
* returned list will be present inside the JAXB object.
|
|
|
73 |
* This is why there is not a <CODE>set</CODE> method for the component property.
|
|
|
74 |
*
|
|
|
75 |
* <p>
|
|
|
76 |
* For example, to add a new item, do as follows:
|
|
|
77 |
* <pre>
|
|
|
78 |
* getComponent().add(newItem);
|
|
|
79 |
* </pre>
|
|
|
80 |
*
|
|
|
81 |
*
|
|
|
82 |
* <p>
|
|
|
83 |
* Objects of the following type(s) are allowed in the list
|
|
|
84 |
* {@link Component }
|
|
|
85 |
*
|
|
|
86 |
*
|
|
|
87 |
*/
|
|
|
88 |
public List<Component> getComponent() {
|
|
|
89 |
if (component == null) {
|
|
|
90 |
component = new ArrayList<Component>();
|
|
|
91 |
}
|
|
|
92 |
return this.component;
|
|
|
93 |
}
|
|
|
94 |
|
|
|
95 |
}
|