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 java.math.BigInteger;
12
import javax.xml.bind.annotation.XmlAccessType;
13
import javax.xml.bind.annotation.XmlAccessorType;
14
import javax.xml.bind.annotation.XmlElement;
15
import javax.xml.bind.annotation.XmlRootElement;
16
import javax.xml.bind.annotation.XmlType;
17
import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
18
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
19
 
20
 
21
/**
22
 * <p>Java class for anonymous complex type.
23
 * 
24
 * <p>The following schema fragment specifies the expected content contained within this class.
25
 * 
26
 * <pre>
27
 * &lt;complexType>
28
 *   &lt;complexContent>
29
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
30
 *       &lt;sequence>
31
 *         &lt;element ref="{}VariationData" minOccurs="0"/>
32
 *         &lt;element ref="{}AdditionalFeatures" minOccurs="0"/>
33
 *         &lt;element ref="{}CacheMemory" minOccurs="0"/>
34
 *         &lt;element ref="{}ModelNumber" minOccurs="0"/>
35
 *         &lt;element ref="{}ProcessorBrand" minOccurs="0"/>
36
 *         &lt;element ref="{}ProcessorCoolingDevice" minOccurs="0"/>
37
 *         &lt;element ref="{}ProcessorCount" minOccurs="0"/>
38
 *         &lt;element ref="{}ProcessorSeries" minOccurs="0"/>
39
 *         &lt;element ref="{}ProcessorSocket" minOccurs="0"/>
40
 *         &lt;element ref="{}ProcessorSpeed" minOccurs="0"/>
41
 *       &lt;/sequence>
42
 *     &lt;/restriction>
43
 *   &lt;/complexContent>
44
 * &lt;/complexType>
45
 * </pre>
46
 * 
47
 * 
48
 */
49
@XmlAccessorType(XmlAccessType.FIELD)
50
@XmlType(name = "", propOrder = {
51
    "variationData",
52
    "additionalFeatures",
53
    "cacheMemory",
54
    "modelNumber",
55
    "processorBrand",
56
    "processorCoolingDevice",
57
    "processorCount",
58
    "processorSeries",
59
    "processorSocket",
60
    "processorSpeed"
61
})
62
@XmlRootElement(name = "ComputerProcessor")
63
public class ComputerProcessor {
64
 
65
    @XmlElement(name = "VariationData")
66
    protected VariationData variationData;
67
    @XmlElement(name = "AdditionalFeatures")
68
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
69
    protected String additionalFeatures;
70
    @XmlElement(name = "CacheMemory")
71
    protected MemorySizeIntegerDimension cacheMemory;
72
    @XmlElement(name = "ModelNumber")
73
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
74
    protected String modelNumber;
75
    @XmlElement(name = "ProcessorBrand")
76
    protected String processorBrand;
77
    @XmlElement(name = "ProcessorCoolingDevice")
78
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
79
    protected String processorCoolingDevice;
80
    @XmlElement(name = "ProcessorCount")
81
    protected BigInteger processorCount;
82
    @XmlElement(name = "ProcessorSeries")
83
    protected ProcessorSeriesTypeValues processorSeries;
84
    @XmlElement(name = "ProcessorSocket")
85
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
86
    protected String processorSocket;
87
    @XmlElement(name = "ProcessorSpeed")
88
    protected FrequencyDimension processorSpeed;
89
 
90
    /**
91
     * Gets the value of the variationData property.
92
     * 
93
     * @return
94
     *     possible object is
95
     *     {@link VariationData }
96
     *     
97
     */
98
    public VariationData getVariationData() {
99
        return variationData;
100
    }
101
 
102
    /**
103
     * Sets the value of the variationData property.
104
     * 
105
     * @param value
106
     *     allowed object is
107
     *     {@link VariationData }
108
     *     
109
     */
110
    public void setVariationData(VariationData value) {
111
        this.variationData = value;
112
    }
113
 
114
    /**
115
     * Gets the value of the additionalFeatures property.
116
     * 
117
     * @return
118
     *     possible object is
119
     *     {@link String }
120
     *     
121
     */
122
    public String getAdditionalFeatures() {
123
        return additionalFeatures;
124
    }
125
 
126
    /**
127
     * Sets the value of the additionalFeatures property.
128
     * 
129
     * @param value
130
     *     allowed object is
131
     *     {@link String }
132
     *     
133
     */
134
    public void setAdditionalFeatures(String value) {
135
        this.additionalFeatures = value;
136
    }
137
 
138
    /**
139
     * Gets the value of the cacheMemory property.
140
     * 
141
     * @return
142
     *     possible object is
143
     *     {@link MemorySizeIntegerDimension }
144
     *     
145
     */
146
    public MemorySizeIntegerDimension getCacheMemory() {
147
        return cacheMemory;
148
    }
149
 
150
    /**
151
     * Sets the value of the cacheMemory property.
152
     * 
153
     * @param value
154
     *     allowed object is
155
     *     {@link MemorySizeIntegerDimension }
156
     *     
157
     */
158
    public void setCacheMemory(MemorySizeIntegerDimension value) {
159
        this.cacheMemory = value;
160
    }
161
 
162
    /**
163
     * Gets the value of the modelNumber property.
164
     * 
165
     * @return
166
     *     possible object is
167
     *     {@link String }
168
     *     
169
     */
170
    public String getModelNumber() {
171
        return modelNumber;
172
    }
173
 
174
    /**
175
     * Sets the value of the modelNumber property.
176
     * 
177
     * @param value
178
     *     allowed object is
179
     *     {@link String }
180
     *     
181
     */
182
    public void setModelNumber(String value) {
183
        this.modelNumber = value;
184
    }
185
 
186
    /**
187
     * Gets the value of the processorBrand property.
188
     * 
189
     * @return
190
     *     possible object is
191
     *     {@link String }
192
     *     
193
     */
194
    public String getProcessorBrand() {
195
        return processorBrand;
196
    }
197
 
198
    /**
199
     * Sets the value of the processorBrand property.
200
     * 
201
     * @param value
202
     *     allowed object is
203
     *     {@link String }
204
     *     
205
     */
206
    public void setProcessorBrand(String value) {
207
        this.processorBrand = value;
208
    }
209
 
210
    /**
211
     * Gets the value of the processorCoolingDevice property.
212
     * 
213
     * @return
214
     *     possible object is
215
     *     {@link String }
216
     *     
217
     */
218
    public String getProcessorCoolingDevice() {
219
        return processorCoolingDevice;
220
    }
221
 
222
    /**
223
     * Sets the value of the processorCoolingDevice property.
224
     * 
225
     * @param value
226
     *     allowed object is
227
     *     {@link String }
228
     *     
229
     */
230
    public void setProcessorCoolingDevice(String value) {
231
        this.processorCoolingDevice = value;
232
    }
233
 
234
    /**
235
     * Gets the value of the processorCount property.
236
     * 
237
     * @return
238
     *     possible object is
239
     *     {@link BigInteger }
240
     *     
241
     */
242
    public BigInteger getProcessorCount() {
243
        return processorCount;
244
    }
245
 
246
    /**
247
     * Sets the value of the processorCount property.
248
     * 
249
     * @param value
250
     *     allowed object is
251
     *     {@link BigInteger }
252
     *     
253
     */
254
    public void setProcessorCount(BigInteger value) {
255
        this.processorCount = value;
256
    }
257
 
258
    /**
259
     * Gets the value of the processorSeries property.
260
     * 
261
     * @return
262
     *     possible object is
263
     *     {@link ProcessorSeriesTypeValues }
264
     *     
265
     */
266
    public ProcessorSeriesTypeValues getProcessorSeries() {
267
        return processorSeries;
268
    }
269
 
270
    /**
271
     * Sets the value of the processorSeries property.
272
     * 
273
     * @param value
274
     *     allowed object is
275
     *     {@link ProcessorSeriesTypeValues }
276
     *     
277
     */
278
    public void setProcessorSeries(ProcessorSeriesTypeValues value) {
279
        this.processorSeries = value;
280
    }
281
 
282
    /**
283
     * Gets the value of the processorSocket property.
284
     * 
285
     * @return
286
     *     possible object is
287
     *     {@link String }
288
     *     
289
     */
290
    public String getProcessorSocket() {
291
        return processorSocket;
292
    }
293
 
294
    /**
295
     * Sets the value of the processorSocket property.
296
     * 
297
     * @param value
298
     *     allowed object is
299
     *     {@link String }
300
     *     
301
     */
302
    public void setProcessorSocket(String value) {
303
        this.processorSocket = value;
304
    }
305
 
306
    /**
307
     * Gets the value of the processorSpeed property.
308
     * 
309
     * @return
310
     *     possible object is
311
     *     {@link FrequencyDimension }
312
     *     
313
     */
314
    public FrequencyDimension getProcessorSpeed() {
315
        return processorSpeed;
316
    }
317
 
318
    /**
319
     * Sets the value of the processorSpeed property.
320
     * 
321
     * @param value
322
     *     allowed object is
323
     *     {@link FrequencyDimension }
324
     *     
325
     */
326
    public void setProcessorSpeed(FrequencyDimension value) {
327
        this.processorSpeed = value;
328
    }
329
 
330
}