Coverage Report - yarfraw.generated.googlebase.elements.TaxType
 
Classes in this File Line Coverage Branch Coverage Complexity
TaxType
N/A 
N/A 
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  
  * <p>Java class for taxType complex type.
 20  
  * 
 21  
  * <p>The following schema fragment specifies the expected content contained within this class.
 22  
  * 
 23  
  * <pre>
 24  
  * &lt;complexType name="taxType">
 25  
  *   &lt;complexContent>
 26  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 27  
  *       &lt;all>
 28  
  *         &lt;element name="region" type="{http://base.google.com/ns/1.0}stringAttrValueType"/>
 29  
  *         &lt;element name="percent" type="{http://base.google.com/ns/1.0}percentType"/>
 30  
  *       &lt;/all>
 31  
  *     &lt;/restriction>
 32  
  *   &lt;/complexContent>
 33  
  * &lt;/complexType>
 34  
  * </pre>
 35  
  * 
 36  
  * 
 37  
  */
 38  
 @XmlAccessorType(XmlAccessType.FIELD)
 39  
 @XmlType(name = "taxType", propOrder = {
 40  
 
 41  
 })
 42  
 public class TaxType {
 43  
 
 44  
     @XmlElement(required = true)
 45  
     protected String region;
 46  
     @XmlElement(required = true)
 47  
     protected BigDecimal percent;
 48  
 
 49  
     /**
 50  
      * Gets the value of the region property.
 51  
      * 
 52  
      * @return
 53  
      *     possible object is
 54  
      *     {@link String }
 55  
      *     
 56  
      */
 57  
     public String getRegion() {
 58  
         return region;
 59  
     }
 60  
 
 61  
     /**
 62  
      * Sets the value of the region property.
 63  
      * 
 64  
      * @param value
 65  
      *     allowed object is
 66  
      *     {@link String }
 67  
      *     
 68  
      */
 69  
     public void setRegion(String value) {
 70  
         this.region = value;
 71  
     }
 72  
 
 73  
     /**
 74  
      * Gets the value of the percent property.
 75  
      * 
 76  
      * @return
 77  
      *     possible object is
 78  
      *     {@link BigDecimal }
 79  
      *     
 80  
      */
 81  
     public BigDecimal getPercent() {
 82  
         return percent;
 83  
     }
 84  
 
 85  
     /**
 86  
      * Sets the value of the percent property.
 87  
      * 
 88  
      * @param value
 89  
      *     allowed object is
 90  
      *     {@link BigDecimal }
 91  
      *     
 92  
      */
 93  
     public void setPercent(BigDecimal value) {
 94  
         this.percent = value;
 95  
     }
 96  
 
 97  
 }