Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
7479 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.XmlType;
15
 
16
 
17
/**
18
 * <p>Java class for Dimensions complex type.
19
 * 
20
 * <p>The following schema fragment specifies the expected content contained within this class.
21
 * 
22
 * <pre>
23
 * &lt;complexType name="Dimensions">
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;element name="Weight" type="{}WeightDimension" minOccurs="0"/>
31
 *       &lt;/sequence>
32
 *     &lt;/restriction>
33
 *   &lt;/complexContent>
34
 * &lt;/complexType>
35
 * </pre>
36
 * 
37
 * 
38
 */
39
@XmlAccessorType(XmlAccessType.FIELD)
40
@XmlType(name = "Dimensions", propOrder = {
41
    "length",
42
    "width",
43
    "height",
44
    "weight"
45
})
46
public class Dimensions {
47
 
48
    @XmlElement(name = "Length")
49
    protected LengthDimension length;
50
    @XmlElement(name = "Width")
51
    protected LengthDimension width;
52
    @XmlElement(name = "Height")
53
    protected LengthDimension height;
54
    @XmlElement(name = "Weight")
55
    protected WeightDimension weight;
56
 
57
    /**
58
     * Gets the value of the length property.
59
     * 
60
     * @return
61
     *     possible object is
62
     *     {@link LengthDimension }
63
     *     
64
     */
65
    public LengthDimension getLength() {
66
        return length;
67
    }
68
 
69
    /**
70
     * Sets the value of the length property.
71
     * 
72
     * @param value
73
     *     allowed object is
74
     *     {@link LengthDimension }
75
     *     
76
     */
77
    public void setLength(LengthDimension value) {
78
        this.length = value;
79
    }
80
 
81
    /**
82
     * Gets the value of the width property.
83
     * 
84
     * @return
85
     *     possible object is
86
     *     {@link LengthDimension }
87
     *     
88
     */
89
    public LengthDimension getWidth() {
90
        return width;
91
    }
92
 
93
    /**
94
     * Sets the value of the width property.
95
     * 
96
     * @param value
97
     *     allowed object is
98
     *     {@link LengthDimension }
99
     *     
100
     */
101
    public void setWidth(LengthDimension value) {
102
        this.width = value;
103
    }
104
 
105
    /**
106
     * Gets the value of the height property.
107
     * 
108
     * @return
109
     *     possible object is
110
     *     {@link LengthDimension }
111
     *     
112
     */
113
    public LengthDimension getHeight() {
114
        return height;
115
    }
116
 
117
    /**
118
     * Sets the value of the height property.
119
     * 
120
     * @param value
121
     *     allowed object is
122
     *     {@link LengthDimension }
123
     *     
124
     */
125
    public void setHeight(LengthDimension value) {
126
        this.height = value;
127
    }
128
 
129
    /**
130
     * Gets the value of the weight property.
131
     * 
132
     * @return
133
     *     possible object is
134
     *     {@link WeightDimension }
135
     *     
136
     */
137
    public WeightDimension getWeight() {
138
        return weight;
139
    }
140
 
141
    /**
142
     * Sets the value of the weight property.
143
     * 
144
     * @param value
145
     *     allowed object is
146
     *     {@link WeightDimension }
147
     *     
148
     */
149
    public void setWeight(WeightDimension value) {
150
        this.weight = value;
151
    }
152
 
153
}