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: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.XmlAttribute;
14
import javax.xml.bind.annotation.XmlType;
15
 
16
 
17
/**
18
 * <p>Java class for OverrideCurrencyAmount complex type.
19
 * 
20
 * <p>The following schema fragment specifies the expected content contained within this class.
21
 * 
22
 * <pre>
23
 * &lt;complexType name="OverrideCurrencyAmount">
24
 *   &lt;simpleContent>
25
 *     &lt;extension base="&lt;>CurrencyAmountWithDefault">
26
 *       &lt;attribute name="zero" type="{http://www.w3.org/2001/XMLSchema}boolean" />
27
 *     &lt;/extension>
28
 *   &lt;/simpleContent>
29
 * &lt;/complexType>
30
 * </pre>
31
 * 
32
 * 
33
 */
34
@XmlAccessorType(XmlAccessType.FIELD)
35
@XmlType(name = "OverrideCurrencyAmount")
36
public class OverrideCurrencyAmount
37
    extends CurrencyAmountWithDefault
38
{
39
 
40
    @XmlAttribute
41
    protected Boolean zero;
42
 
43
    /**
44
     * Gets the value of the zero property.
45
     * 
46
     * @return
47
     *     possible object is
48
     *     {@link Boolean }
49
     *     
50
     */
51
    public Boolean isZero() {
52
        return zero;
53
    }
54
 
55
    /**
56
     * Sets the value of the zero property.
57
     * 
58
     * @param value
59
     *     allowed object is
60
     *     {@link Boolean }
61
     *     
62
     */
63
    public void setZero(Boolean value) {
64
        this.zero = value;
65
    }
66
 
67
}