Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
7487 kshitij.so 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 java.math.BigInteger;
12
import java.util.ArrayList;
13
import java.util.List;
14
import javax.xml.bind.annotation.XmlAccessType;
15
import javax.xml.bind.annotation.XmlAccessorType;
16
import javax.xml.bind.annotation.XmlElement;
17
import javax.xml.bind.annotation.XmlRootElement;
18
import javax.xml.bind.annotation.XmlSchemaType;
19
import javax.xml.bind.annotation.XmlType;
20
import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
21
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
22
 
23
 
24
/**
25
 * <p>Java class for anonymous complex type.
26
 * 
27
 * <p>The following schema fragment specifies the expected content contained within this class.
28
 * 
29
 * <pre>
30
 * &lt;complexType>
31
 *   &lt;complexContent>
32
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
33
 *       &lt;sequence>
34
 *         &lt;element ref="{}BuiltInMedia" maxOccurs="3" minOccurs="0"/>
35
 *         &lt;element ref="{}TotalCoaxialInputs" minOccurs="0"/>
36
 *       &lt;/sequence>
37
 *     &lt;/restriction>
38
 *   &lt;/complexContent>
39
 * &lt;/complexType>
40
 * </pre>
41
 * 
42
 * 
43
 */
44
@XmlAccessorType(XmlAccessType.FIELD)
45
@XmlType(name = "", propOrder = {
46
    "builtInMedia",
47
    "totalCoaxialInputs"
48
})
49
@XmlRootElement(name = "VCR")
50
public class VCR {
51
 
52
    @XmlElement(name = "BuiltInMedia")
53
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
54
    protected List<String> builtInMedia;
55
    @XmlElement(name = "TotalCoaxialInputs")
56
    @XmlSchemaType(name = "positiveInteger")
57
    protected BigInteger totalCoaxialInputs;
58
 
59
    /**
60
     * Gets the value of the builtInMedia property.
61
     * 
62
     * <p>
63
     * This accessor method returns a reference to the live list,
64
     * not a snapshot. Therefore any modification you make to the
65
     * returned list will be present inside the JAXB object.
66
     * This is why there is not a <CODE>set</CODE> method for the builtInMedia property.
67
     * 
68
     * <p>
69
     * For example, to add a new item, do as follows:
70
     * <pre>
71
     *    getBuiltInMedia().add(newItem);
72
     * </pre>
73
     * 
74
     * 
75
     * <p>
76
     * Objects of the following type(s) are allowed in the list
77
     * {@link String }
78
     * 
79
     * 
80
     */
81
    public List<String> getBuiltInMedia() {
82
        if (builtInMedia == null) {
83
            builtInMedia = new ArrayList<String>();
84
        }
85
        return this.builtInMedia;
86
    }
87
 
88
    /**
89
     * Gets the value of the totalCoaxialInputs property.
90
     * 
91
     * @return
92
     *     possible object is
93
     *     {@link BigInteger }
94
     *     
95
     */
96
    public BigInteger getTotalCoaxialInputs() {
97
        return totalCoaxialInputs;
98
    }
99
 
100
    /**
101
     * Sets the value of the totalCoaxialInputs property.
102
     * 
103
     * @param value
104
     *     allowed object is
105
     *     {@link BigInteger }
106
     *     
107
     */
108
    public void setTotalCoaxialInputs(BigInteger value) {
109
        this.totalCoaxialInputs = value;
110
    }
111
 
112
}