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: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="HardwarePlatform" type="{}HardwarePlatformType"/>
31
 *         &lt;element name="SystemRequirements" type="{}LongStringNotNull" minOccurs="0"/>
32
 *       &lt;/sequence>
33
 *     &lt;/restriction>
34
 *   &lt;/complexContent>
35
 * &lt;/complexType>
36
 * </pre>
37
 * 
38
 * 
39
 */
40
@XmlAccessorType(XmlAccessType.FIELD)
41
@XmlType(name = "", propOrder = {
42
    "hardwarePlatform",
43
    "systemRequirements"
44
})
45
@XmlRootElement(name = "SoftwarePlatform")
46
public class SoftwarePlatform {
47
 
48
    @XmlElement(name = "HardwarePlatform", required = true)
49
    protected HardwarePlatformType hardwarePlatform;
50
    @XmlElement(name = "SystemRequirements", defaultValue = "N/A")
51
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
52
    protected String systemRequirements;
53
 
54
    /**
55
     * Gets the value of the hardwarePlatform property.
56
     * 
57
     * @return
58
     *     possible object is
59
     *     {@link HardwarePlatformType }
60
     *     
61
     */
62
    public HardwarePlatformType getHardwarePlatform() {
63
        return hardwarePlatform;
64
    }
65
 
66
    /**
67
     * Sets the value of the hardwarePlatform property.
68
     * 
69
     * @param value
70
     *     allowed object is
71
     *     {@link HardwarePlatformType }
72
     *     
73
     */
74
    public void setHardwarePlatform(HardwarePlatformType value) {
75
        this.hardwarePlatform = value;
76
    }
77
 
78
    /**
79
     * Gets the value of the systemRequirements property.
80
     * 
81
     * @return
82
     *     possible object is
83
     *     {@link String }
84
     *     
85
     */
86
    public String getSystemRequirements() {
87
        return systemRequirements;
88
    }
89
 
90
    /**
91
     * Sets the value of the systemRequirements property.
92
     * 
93
     * @param value
94
     *     allowed object is
95
     *     {@link String }
96
     *     
97
     */
98
    public void setSystemRequirements(String value) {
99
        this.systemRequirements = value;
100
    }
101
 
102
}