Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
7480 vikram.rag 1
//
2
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 
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: 2013.03.04 at 03:49:29 PM IST 
6
//
7
 
8
 
9
package in.shop2020.feeds.products;
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="ProductType">
29
 *           &lt;complexType>
30
 *             &lt;complexContent>
31
 *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
32
 *                 &lt;choice>
33
 *                   &lt;element ref="{}BabyProducts"/>
34
 *                 &lt;/choice>
35
 *               &lt;/restriction>
36
 *             &lt;/complexContent>
37
 *           &lt;/complexType>
38
 *         &lt;/element>
39
 *       &lt;/sequence>
40
 *     &lt;/restriction>
41
 *   &lt;/complexContent>
42
 * &lt;/complexType>
43
 * </pre>
44
 * 
45
 * 
46
 */
47
@XmlAccessorType(XmlAccessType.FIELD)
48
@XmlType(name = "", propOrder = {
49
    "productType"
50
})
51
@XmlRootElement(name = "Baby")
52
public class Baby {
53
 
54
    @XmlElement(name = "ProductType", required = true)
55
    protected Baby.ProductType productType;
56
 
57
    /**
58
     * Gets the value of the productType property.
59
     * 
60
     * @return
61
     *     possible object is
62
     *     {@link Baby.ProductType }
63
     *     
64
     */
65
    public Baby.ProductType getProductType() {
66
        return productType;
67
    }
68
 
69
    /**
70
     * Sets the value of the productType property.
71
     * 
72
     * @param value
73
     *     allowed object is
74
     *     {@link Baby.ProductType }
75
     *     
76
     */
77
    public void setProductType(Baby.ProductType value) {
78
        this.productType = value;
79
    }
80
 
81
 
82
    /**
83
     * <p>Java class for anonymous complex type.
84
     * 
85
     * <p>The following schema fragment specifies the expected content contained within this class.
86
     * 
87
     * <pre>
88
     * &lt;complexType>
89
     *   &lt;complexContent>
90
     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
91
     *       &lt;choice>
92
     *         &lt;element ref="{}BabyProducts"/>
93
     *       &lt;/choice>
94
     *     &lt;/restriction>
95
     *   &lt;/complexContent>
96
     * &lt;/complexType>
97
     * </pre>
98
     * 
99
     * 
100
     */
101
    @XmlAccessorType(XmlAccessType.FIELD)
102
    @XmlType(name = "", propOrder = {
103
        "babyProducts"
104
    })
105
    public static class ProductType {
106
 
107
        @XmlElement(name = "BabyProducts")
108
        protected BabyProducts babyProducts;
109
 
110
        /**
111
         * Gets the value of the babyProducts property.
112
         * 
113
         * @return
114
         *     possible object is
115
         *     {@link BabyProducts }
116
         *     
117
         */
118
        public BabyProducts getBabyProducts() {
119
            return babyProducts;
120
        }
121
 
122
        /**
123
         * Sets the value of the babyProducts property.
124
         * 
125
         * @param value
126
         *     allowed object is
127
         *     {@link BabyProducts }
128
         *     
129
         */
130
        public void setBabyProducts(BabyProducts value) {
131
            this.babyProducts = value;
132
        }
133
 
134
    }
135
 
136
}