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.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.XmlRootElement;
17
import javax.xml.bind.annotation.XmlType;
18
import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
19
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
20
 
21
 
22
/**
23
 * <p>Java class for anonymous complex type.
24
 * 
25
 * <p>The following schema fragment specifies the expected content contained within this class.
26
 * 
27
 * <pre>
28
 * &lt;complexType>
29
 *   &lt;complexContent>
30
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
31
 *       &lt;sequence>
32
 *         &lt;element ref="{}VariationData" minOccurs="0"/>
33
 *         &lt;element name="InkColor" type="{}StringNotNull" maxOccurs="5" minOccurs="0"/>
34
 *         &lt;element name="InkOrTonerCompatibleDevices" type="{}MediumStringNotNull" minOccurs="0"/>
35
 *       &lt;/sequence>
36
 *     &lt;/restriction>
37
 *   &lt;/complexContent>
38
 * &lt;/complexType>
39
 * </pre>
40
 * 
41
 * 
42
 */
43
@XmlAccessorType(XmlAccessType.FIELD)
44
@XmlType(name = "", propOrder = {
45
    "variationData",
46
    "inkColor",
47
    "inkOrTonerCompatibleDevices"
48
})
49
@XmlRootElement(name = "InkOrToner")
50
public class InkOrToner {
51
 
52
    @XmlElement(name = "VariationData")
53
    protected VariationData variationData;
54
    @XmlElement(name = "InkColor")
55
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
56
    protected List<String> inkColor;
57
    @XmlElement(name = "InkOrTonerCompatibleDevices")
58
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
59
    protected String inkOrTonerCompatibleDevices;
60
 
61
    /**
62
     * Gets the value of the variationData property.
63
     * 
64
     * @return
65
     *     possible object is
66
     *     {@link VariationData }
67
     *     
68
     */
69
    public VariationData getVariationData() {
70
        return variationData;
71
    }
72
 
73
    /**
74
     * Sets the value of the variationData property.
75
     * 
76
     * @param value
77
     *     allowed object is
78
     *     {@link VariationData }
79
     *     
80
     */
81
    public void setVariationData(VariationData value) {
82
        this.variationData = value;
83
    }
84
 
85
    /**
86
     * Gets the value of the inkColor property.
87
     * 
88
     * <p>
89
     * This accessor method returns a reference to the live list,
90
     * not a snapshot. Therefore any modification you make to the
91
     * returned list will be present inside the JAXB object.
92
     * This is why there is not a <CODE>set</CODE> method for the inkColor property.
93
     * 
94
     * <p>
95
     * For example, to add a new item, do as follows:
96
     * <pre>
97
     *    getInkColor().add(newItem);
98
     * </pre>
99
     * 
100
     * 
101
     * <p>
102
     * Objects of the following type(s) are allowed in the list
103
     * {@link String }
104
     * 
105
     * 
106
     */
107
    public List<String> getInkColor() {
108
        if (inkColor == null) {
109
            inkColor = new ArrayList<String>();
110
        }
111
        return this.inkColor;
112
    }
113
 
114
    /**
115
     * Gets the value of the inkOrTonerCompatibleDevices property.
116
     * 
117
     * @return
118
     *     possible object is
119
     *     {@link String }
120
     *     
121
     */
122
    public String getInkOrTonerCompatibleDevices() {
123
        return inkOrTonerCompatibleDevices;
124
    }
125
 
126
    /**
127
     * Sets the value of the inkOrTonerCompatibleDevices property.
128
     * 
129
     * @param value
130
     *     allowed object is
131
     *     {@link String }
132
     *     
133
     */
134
    public void setInkOrTonerCompatibleDevices(String value) {
135
        this.inkOrTonerCompatibleDevices = value;
136
    }
137
 
138
}