| 7481 |
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 |
import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
|
|
|
17 |
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
|
|
|
18 |
|
|
|
19 |
|
|
|
20 |
/**
|
|
|
21 |
* <p>Java class for anonymous complex type.
|
|
|
22 |
*
|
|
|
23 |
* <p>The following schema fragment specifies the expected content contained within this class.
|
|
|
24 |
*
|
|
|
25 |
* <pre>
|
|
|
26 |
* <complexType>
|
|
|
27 |
* <complexContent>
|
|
|
28 |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
|
29 |
* <sequence>
|
|
|
30 |
* <element name="GraphicsCardDescription" type="{}MediumStringNotNull" minOccurs="0"/>
|
|
|
31 |
* <element name="GraphicsCoprocessor" type="{}StringNotNull" minOccurs="0"/>
|
|
|
32 |
* <element name="GraphicsProcessorManufacturer" type="{}StringNotNull" minOccurs="0"/>
|
|
|
33 |
* <element name="GraphicsCardRamSize" type="{}MemorySizeDimension" minOccurs="0"/>
|
|
|
34 |
* <element name="GraphicsCardInterface" type="{}TwentyStringNotNull" minOccurs="0"/>
|
|
|
35 |
* </sequence>
|
|
|
36 |
* </restriction>
|
|
|
37 |
* </complexContent>
|
|
|
38 |
* </complexType>
|
|
|
39 |
* </pre>
|
|
|
40 |
*
|
|
|
41 |
*
|
|
|
42 |
*/
|
|
|
43 |
@XmlAccessorType(XmlAccessType.FIELD)
|
|
|
44 |
@XmlType(name = "", propOrder = {
|
|
|
45 |
"graphicsCardDescription",
|
|
|
46 |
"graphicsCoprocessor",
|
|
|
47 |
"graphicsProcessorManufacturer",
|
|
|
48 |
"graphicsCardRamSize",
|
|
|
49 |
"graphicsCardInterface"
|
|
|
50 |
})
|
|
|
51 |
@XmlRootElement(name = "GraphicsCard")
|
|
|
52 |
public class GraphicsCard {
|
|
|
53 |
|
|
|
54 |
@XmlElement(name = "GraphicsCardDescription")
|
|
|
55 |
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
|
|
|
56 |
protected String graphicsCardDescription;
|
|
|
57 |
@XmlElement(name = "GraphicsCoprocessor")
|
|
|
58 |
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
|
|
|
59 |
protected String graphicsCoprocessor;
|
|
|
60 |
@XmlElement(name = "GraphicsProcessorManufacturer")
|
|
|
61 |
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
|
|
|
62 |
protected String graphicsProcessorManufacturer;
|
|
|
63 |
@XmlElement(name = "GraphicsCardRamSize")
|
|
|
64 |
protected MemorySizeDimension graphicsCardRamSize;
|
|
|
65 |
@XmlElement(name = "GraphicsCardInterface")
|
|
|
66 |
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
|
|
|
67 |
protected String graphicsCardInterface;
|
|
|
68 |
|
|
|
69 |
/**
|
|
|
70 |
* Gets the value of the graphicsCardDescription property.
|
|
|
71 |
*
|
|
|
72 |
* @return
|
|
|
73 |
* possible object is
|
|
|
74 |
* {@link String }
|
|
|
75 |
*
|
|
|
76 |
*/
|
|
|
77 |
public String getGraphicsCardDescription() {
|
|
|
78 |
return graphicsCardDescription;
|
|
|
79 |
}
|
|
|
80 |
|
|
|
81 |
/**
|
|
|
82 |
* Sets the value of the graphicsCardDescription property.
|
|
|
83 |
*
|
|
|
84 |
* @param value
|
|
|
85 |
* allowed object is
|
|
|
86 |
* {@link String }
|
|
|
87 |
*
|
|
|
88 |
*/
|
|
|
89 |
public void setGraphicsCardDescription(String value) {
|
|
|
90 |
this.graphicsCardDescription = value;
|
|
|
91 |
}
|
|
|
92 |
|
|
|
93 |
/**
|
|
|
94 |
* Gets the value of the graphicsCoprocessor property.
|
|
|
95 |
*
|
|
|
96 |
* @return
|
|
|
97 |
* possible object is
|
|
|
98 |
* {@link String }
|
|
|
99 |
*
|
|
|
100 |
*/
|
|
|
101 |
public String getGraphicsCoprocessor() {
|
|
|
102 |
return graphicsCoprocessor;
|
|
|
103 |
}
|
|
|
104 |
|
|
|
105 |
/**
|
|
|
106 |
* Sets the value of the graphicsCoprocessor property.
|
|
|
107 |
*
|
|
|
108 |
* @param value
|
|
|
109 |
* allowed object is
|
|
|
110 |
* {@link String }
|
|
|
111 |
*
|
|
|
112 |
*/
|
|
|
113 |
public void setGraphicsCoprocessor(String value) {
|
|
|
114 |
this.graphicsCoprocessor = value;
|
|
|
115 |
}
|
|
|
116 |
|
|
|
117 |
/**
|
|
|
118 |
* Gets the value of the graphicsProcessorManufacturer property.
|
|
|
119 |
*
|
|
|
120 |
* @return
|
|
|
121 |
* possible object is
|
|
|
122 |
* {@link String }
|
|
|
123 |
*
|
|
|
124 |
*/
|
|
|
125 |
public String getGraphicsProcessorManufacturer() {
|
|
|
126 |
return graphicsProcessorManufacturer;
|
|
|
127 |
}
|
|
|
128 |
|
|
|
129 |
/**
|
|
|
130 |
* Sets the value of the graphicsProcessorManufacturer property.
|
|
|
131 |
*
|
|
|
132 |
* @param value
|
|
|
133 |
* allowed object is
|
|
|
134 |
* {@link String }
|
|
|
135 |
*
|
|
|
136 |
*/
|
|
|
137 |
public void setGraphicsProcessorManufacturer(String value) {
|
|
|
138 |
this.graphicsProcessorManufacturer = value;
|
|
|
139 |
}
|
|
|
140 |
|
|
|
141 |
/**
|
|
|
142 |
* Gets the value of the graphicsCardRamSize property.
|
|
|
143 |
*
|
|
|
144 |
* @return
|
|
|
145 |
* possible object is
|
|
|
146 |
* {@link MemorySizeDimension }
|
|
|
147 |
*
|
|
|
148 |
*/
|
|
|
149 |
public MemorySizeDimension getGraphicsCardRamSize() {
|
|
|
150 |
return graphicsCardRamSize;
|
|
|
151 |
}
|
|
|
152 |
|
|
|
153 |
/**
|
|
|
154 |
* Sets the value of the graphicsCardRamSize property.
|
|
|
155 |
*
|
|
|
156 |
* @param value
|
|
|
157 |
* allowed object is
|
|
|
158 |
* {@link MemorySizeDimension }
|
|
|
159 |
*
|
|
|
160 |
*/
|
|
|
161 |
public void setGraphicsCardRamSize(MemorySizeDimension value) {
|
|
|
162 |
this.graphicsCardRamSize = value;
|
|
|
163 |
}
|
|
|
164 |
|
|
|
165 |
/**
|
|
|
166 |
* Gets the value of the graphicsCardInterface property.
|
|
|
167 |
*
|
|
|
168 |
* @return
|
|
|
169 |
* possible object is
|
|
|
170 |
* {@link String }
|
|
|
171 |
*
|
|
|
172 |
*/
|
|
|
173 |
public String getGraphicsCardInterface() {
|
|
|
174 |
return graphicsCardInterface;
|
|
|
175 |
}
|
|
|
176 |
|
|
|
177 |
/**
|
|
|
178 |
* Sets the value of the graphicsCardInterface property.
|
|
|
179 |
*
|
|
|
180 |
* @param value
|
|
|
181 |
* allowed object is
|
|
|
182 |
* {@link String }
|
|
|
183 |
*
|
|
|
184 |
*/
|
|
|
185 |
public void setGraphicsCardInterface(String value) {
|
|
|
186 |
this.graphicsCardInterface = value;
|
|
|
187 |
}
|
|
|
188 |
|
|
|
189 |
}
|