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