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:57:00 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
 * &lt;complexType>
27
 *   &lt;complexContent>
28
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
29
 *       &lt;sequence>
30
 *         &lt;element name="Type">
31
 *           &lt;simpleType>
32
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
33
 *               &lt;enumeration value="windows"/>
34
 *               &lt;enumeration value="mac"/>
35
 *               &lt;enumeration value="linux"/>
36
 *             &lt;/restriction>
37
 *           &lt;/simpleType>
38
 *         &lt;/element>
39
 *         &lt;element name="SystemRequirements" type="{}LongStringNotNull" minOccurs="0"/>
40
 *       &lt;/sequence>
41
 *     &lt;/restriction>
42
 *   &lt;/complexContent>
43
 * &lt;/complexType>
44
 * </pre>
45
 * 
46
 * 
47
 */
48
@XmlAccessorType(XmlAccessType.FIELD)
49
@XmlType(name = "", propOrder = {
50
    "type",
51
    "systemRequirements"
52
})
53
@XmlRootElement(name = "ComputerPlatform")
54
public class ComputerPlatform {
55
 
56
    @XmlElement(name = "Type", required = true)
57
    protected String type;
58
    @XmlElement(name = "SystemRequirements")
59
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
60
    protected String systemRequirements;
61
 
62
    /**
63
     * Gets the value of the type property.
64
     * 
65
     * @return
66
     *     possible object is
67
     *     {@link String }
68
     *     
69
     */
70
    public String getType() {
71
        return type;
72
    }
73
 
74
    /**
75
     * Sets the value of the type property.
76
     * 
77
     * @param value
78
     *     allowed object is
79
     *     {@link String }
80
     *     
81
     */
82
    public void setType(String value) {
83
        this.type = value;
84
    }
85
 
86
    /**
87
     * Gets the value of the systemRequirements property.
88
     * 
89
     * @return
90
     *     possible object is
91
     *     {@link String }
92
     *     
93
     */
94
    public String getSystemRequirements() {
95
        return systemRequirements;
96
    }
97
 
98
    /**
99
     * Sets the value of the systemRequirements property.
100
     * 
101
     * @param value
102
     *     allowed object is
103
     *     {@link String }
104
     *     
105
     */
106
    public void setSystemRequirements(String value) {
107
        this.systemRequirements = value;
108
    }
109
 
110
}