| Classes in this File | Line Coverage | Branch Coverage | Complexity | |||||||
| ShippingType |
|
| 0.0;0 |
| 1 | // |
|
| 2 | // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.5-b01-fcs |
|
| 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: 2008.06.11 at 12:15:45 AM EDT |
|
| 6 | // |
|
| 7 | ||
| 8 | ||
| 9 | package yarfraw.generated.googlebase.elements; |
|
| 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.XmlElement; |
|
| 15 | import javax.xml.bind.annotation.XmlType; |
|
| 16 | ||
| 17 | ||
| 18 | /** |
|
| 19 | * |
|
| 20 | * Defines shipping option for an item. |
|
| 21 | * |
|
| 22 | * |
|
| 23 | * <p>Java class for shippingType complex type. |
|
| 24 | * |
|
| 25 | * <p>The following schema fragment specifies the expected content contained within this class. |
|
| 26 | * |
|
| 27 | * <pre> |
|
| 28 | * <complexType name="shippingType"> |
|
| 29 | * <complexContent> |
|
| 30 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
|
| 31 | * <sequence> |
|
| 32 | * <element name="country" type="{http://base.google.com/ns/1.0}countryEnumeration"/> |
|
| 33 | * <element name="service" type="{http://base.google.com/ns/1.0}stringAttrValueType"/> |
|
| 34 | * <element name="price" type="{http://base.google.com/ns/1.0}nonNegativeDecimalType"/> |
|
| 35 | * </sequence> |
|
| 36 | * </restriction> |
|
| 37 | * </complexContent> |
|
| 38 | * </complexType> |
|
| 39 | * </pre> |
|
| 40 | * |
|
| 41 | * |
|
| 42 | */ |
|
| 43 | @XmlAccessorType(XmlAccessType.FIELD) |
|
| 44 | @XmlType(name = "shippingType", propOrder = { |
|
| 45 | "country", |
|
| 46 | "service", |
|
| 47 | "price" |
|
| 48 | }) |
|
| 49 | 0 | public class ShippingType { |
| 50 | ||
| 51 | @XmlElement(required = true) |
|
| 52 | protected CountryEnumeration country; |
|
| 53 | @XmlElement(required = true) |
|
| 54 | protected String service; |
|
| 55 | @XmlElement(required = true) |
|
| 56 | protected BigDecimal price; |
|
| 57 | ||
| 58 | /** |
|
| 59 | * Gets the value of the country property. |
|
| 60 | * |
|
| 61 | * @return |
|
| 62 | * possible object is |
|
| 63 | * {@link CountryEnumeration } |
|
| 64 | * |
|
| 65 | */ |
|
| 66 | public CountryEnumeration getCountry() { |
|
| 67 | 0 | return country; |
| 68 | } |
|
| 69 | ||
| 70 | /** |
|
| 71 | * Sets the value of the country property. |
|
| 72 | * |
|
| 73 | * @param value |
|
| 74 | * allowed object is |
|
| 75 | * {@link CountryEnumeration } |
|
| 76 | * |
|
| 77 | */ |
|
| 78 | public void setCountry(CountryEnumeration value) { |
|
| 79 | 0 | this.country = value; |
| 80 | 0 | } |
| 81 | ||
| 82 | /** |
|
| 83 | * Gets the value of the service property. |
|
| 84 | * |
|
| 85 | * @return |
|
| 86 | * possible object is |
|
| 87 | * {@link String } |
|
| 88 | * |
|
| 89 | */ |
|
| 90 | public String getService() { |
|
| 91 | 0 | return service; |
| 92 | } |
|
| 93 | ||
| 94 | /** |
|
| 95 | * Sets the value of the service property. |
|
| 96 | * |
|
| 97 | * @param value |
|
| 98 | * allowed object is |
|
| 99 | * {@link String } |
|
| 100 | * |
|
| 101 | */ |
|
| 102 | public void setService(String value) { |
|
| 103 | 0 | this.service = value; |
| 104 | 0 | } |
| 105 | ||
| 106 | /** |
|
| 107 | * Gets the value of the price property. |
|
| 108 | * |
|
| 109 | * @return |
|
| 110 | * possible object is |
|
| 111 | * {@link BigDecimal } |
|
| 112 | * |
|
| 113 | */ |
|
| 114 | public BigDecimal getPrice() { |
|
| 115 | 0 | return price; |
| 116 | } |
|
| 117 | ||
| 118 | /** |
|
| 119 | * Sets the value of the price property. |
|
| 120 | * |
|
| 121 | * @param value |
|
| 122 | * allowed object is |
|
| 123 | * {@link BigDecimal } |
|
| 124 | * |
|
| 125 | */ |
|
| 126 | public void setPrice(BigDecimal value) { |
|
| 127 | 0 | this.price = value; |
| 128 | 0 | } |
| 129 | ||
| 130 | } |