Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
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: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
 
17
 
18
/**
19
 * <p>Java class for anonymous complex type.
20
 * 
21
 * <p>The following schema fragment specifies the expected content contained within this class.
22
 * 
23
 * <pre>
24
 * &lt;complexType>
25
 *   &lt;complexContent>
26
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27
 *       &lt;sequence>
28
 *         &lt;element name="ForwardFacingMaximumWeight" type="{}WeightDimension" minOccurs="0"/>
29
 *         &lt;element name="ForwardFacingMinimumWeight" type="{}WeightDimension" 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 = "", propOrder = {
40
    "forwardFacingMaximumWeight",
41
    "forwardFacingMinimumWeight"
42
})
43
@XmlRootElement(name = "ForwardFacingWeight")
44
public class ForwardFacingWeight {
45
 
46
    @XmlElement(name = "ForwardFacingMaximumWeight")
47
    protected WeightDimension forwardFacingMaximumWeight;
48
    @XmlElement(name = "ForwardFacingMinimumWeight")
49
    protected WeightDimension forwardFacingMinimumWeight;
50
 
51
    /**
52
     * Gets the value of the forwardFacingMaximumWeight property.
53
     * 
54
     * @return
55
     *     possible object is
56
     *     {@link WeightDimension }
57
     *     
58
     */
59
    public WeightDimension getForwardFacingMaximumWeight() {
60
        return forwardFacingMaximumWeight;
61
    }
62
 
63
    /**
64
     * Sets the value of the forwardFacingMaximumWeight property.
65
     * 
66
     * @param value
67
     *     allowed object is
68
     *     {@link WeightDimension }
69
     *     
70
     */
71
    public void setForwardFacingMaximumWeight(WeightDimension value) {
72
        this.forwardFacingMaximumWeight = value;
73
    }
74
 
75
    /**
76
     * Gets the value of the forwardFacingMinimumWeight property.
77
     * 
78
     * @return
79
     *     possible object is
80
     *     {@link WeightDimension }
81
     *     
82
     */
83
    public WeightDimension getForwardFacingMinimumWeight() {
84
        return forwardFacingMinimumWeight;
85
    }
86
 
87
    /**
88
     * Sets the value of the forwardFacingMinimumWeight property.
89
     * 
90
     * @param value
91
     *     allowed object is
92
     *     {@link WeightDimension }
93
     *     
94
     */
95
    public void setForwardFacingMinimumWeight(WeightDimension value) {
96
        this.forwardFacingMinimumWeight = value;
97
    }
98
 
99
}