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 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.XmlType;
15
 
16
 
17
/**
18
 * <p>Java class for SpatialDimensions complex type.
19
 * 
20
 * <p>The following schema fragment specifies the expected content contained within this class.
21
 * 
22
 * <pre>
23
 * &lt;complexType name="SpatialDimensions">
24
 *   &lt;complexContent>
25
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
26
 *       &lt;sequence>
27
 *         &lt;element name="Length" type="{}LengthDimension" minOccurs="0"/>
28
 *         &lt;element name="Width" type="{}LengthDimension" minOccurs="0"/>
29
 *         &lt;element name="Height" type="{}LengthDimension" minOccurs="0"/>
30
 *       &lt;/sequence>
31
 *     &lt;/restriction>
32
 *   &lt;/complexContent>
33
 * &lt;/complexType>
34
 * </pre>
35
 * 
36
 * 
37
 */
38
@XmlAccessorType(XmlAccessType.FIELD)
39
@XmlType(name = "SpatialDimensions", propOrder = {
40
    "length",
41
    "width",
42
    "height"
43
})
44
public class SpatialDimensions {
45
 
46
    @XmlElement(name = "Length")
47
    protected LengthDimension length;
48
    @XmlElement(name = "Width")
49
    protected LengthDimension width;
50
    @XmlElement(name = "Height")
51
    protected LengthDimension height;
52
 
53
    /**
54
     * Gets the value of the length property.
55
     * 
56
     * @return
57
     *     possible object is
58
     *     {@link LengthDimension }
59
     *     
60
     */
61
    public LengthDimension getLength() {
62
        return length;
63
    }
64
 
65
    /**
66
     * Sets the value of the length property.
67
     * 
68
     * @param value
69
     *     allowed object is
70
     *     {@link LengthDimension }
71
     *     
72
     */
73
    public void setLength(LengthDimension value) {
74
        this.length = value;
75
    }
76
 
77
    /**
78
     * Gets the value of the width property.
79
     * 
80
     * @return
81
     *     possible object is
82
     *     {@link LengthDimension }
83
     *     
84
     */
85
    public LengthDimension getWidth() {
86
        return width;
87
    }
88
 
89
    /**
90
     * Sets the value of the width property.
91
     * 
92
     * @param value
93
     *     allowed object is
94
     *     {@link LengthDimension }
95
     *     
96
     */
97
    public void setWidth(LengthDimension value) {
98
        this.width = value;
99
    }
100
 
101
    /**
102
     * Gets the value of the height property.
103
     * 
104
     * @return
105
     *     possible object is
106
     *     {@link LengthDimension }
107
     *     
108
     */
109
    public LengthDimension getHeight() {
110
        return height;
111
    }
112
 
113
    /**
114
     * Sets the value of the height property.
115
     * 
116
     * @param value
117
     *     allowed object is
118
     *     {@link LengthDimension }
119
     *     
120
     */
121
    public void setHeight(LengthDimension value) {
122
        this.height = value;
123
    }
124
 
125
}