Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
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
 * &lt;complexType>
26
 *   &lt;complexContent>
27
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
28
 *       &lt;sequence>
29
 *         &lt;element name="Component" maxOccurs="unbounded" minOccurs="0">
30
 *           &lt;complexType>
31
 *             &lt;complexContent>
32
 *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
33
 *                 &lt;sequence>
34
 *                   &lt;element name="Type" type="{http://www.w3.org/2001/XMLSchema}string"/>
35
 *                   &lt;element name="Amount">
36
 *                     &lt;complexType>
37
 *                       &lt;simpleContent>
38
 *                         &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>float">
39
 *                           &lt;attribute name="currency" type="{http://www.w3.org/2001/XMLSchema}string" />
40
 *                         &lt;/extension>
41
 *                       &lt;/simpleContent>
42
 *                     &lt;/complexType>
43
 *                   &lt;/element>
44
 *                 &lt;/sequence>
45
 *               &lt;/restriction>
46
 *             &lt;/complexContent>
47
 *           &lt;/complexType>
48
 *         &lt;/element>
49
 *       &lt;/sequence>
50
 *     &lt;/restriction>
51
 *   &lt;/complexContent>
52
 * &lt;/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
}