Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

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