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 java.math.BigInteger;
12
import javax.xml.bind.annotation.XmlAccessType;
13
import javax.xml.bind.annotation.XmlAccessorType;
14
import javax.xml.bind.annotation.XmlAttribute;
15
import javax.xml.bind.annotation.XmlSchemaType;
16
import javax.xml.bind.annotation.XmlType;
17
import javax.xml.bind.annotation.XmlValue;
18
 
19
 
20
/**
21
 * <p>Java class for VolumeIntegerDimension complex type.
22
 * 
23
 * <p>The following schema fragment specifies the expected content contained within this class.
24
 * 
25
 * <pre>
26
 * &lt;complexType name="VolumeIntegerDimension">
27
 *   &lt;simpleContent>
28
 *     &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>positiveInteger">
29
 *       &lt;attribute name="unitOfMeasure" use="required" type="{}VolumeUnitOfMeasure" />
30
 *     &lt;/extension>
31
 *   &lt;/simpleContent>
32
 * &lt;/complexType>
33
 * </pre>
34
 * 
35
 * 
36
 */
37
@XmlAccessorType(XmlAccessType.FIELD)
38
@XmlType(name = "VolumeIntegerDimension", propOrder = {
39
    "value"
40
})
41
public class VolumeIntegerDimension {
42
 
43
    @XmlValue
44
    @XmlSchemaType(name = "positiveInteger")
45
    protected BigInteger value;
46
    @XmlAttribute(required = true)
47
    protected VolumeUnitOfMeasure unitOfMeasure;
48
 
49
    /**
50
     * Gets the value of the value property.
51
     * 
52
     * @return
53
     *     possible object is
54
     *     {@link BigInteger }
55
     *     
56
     */
57
    public BigInteger getValue() {
58
        return value;
59
    }
60
 
61
    /**
62
     * Sets the value of the value property.
63
     * 
64
     * @param value
65
     *     allowed object is
66
     *     {@link BigInteger }
67
     *     
68
     */
69
    public void setValue(BigInteger value) {
70
        this.value = value;
71
    }
72
 
73
    /**
74
     * Gets the value of the unitOfMeasure property.
75
     * 
76
     * @return
77
     *     possible object is
78
     *     {@link VolumeUnitOfMeasure }
79
     *     
80
     */
81
    public VolumeUnitOfMeasure getUnitOfMeasure() {
82
        return unitOfMeasure;
83
    }
84
 
85
    /**
86
     * Sets the value of the unitOfMeasure property.
87
     * 
88
     * @param value
89
     *     allowed object is
90
     *     {@link VolumeUnitOfMeasure }
91
     *     
92
     */
93
    public void setUnitOfMeasure(VolumeUnitOfMeasure value) {
94
        this.unitOfMeasure = value;
95
    }
96
 
97
}