Coverage Report - yarfraw.generated.itunes.elements.ItunesCategoryType
 
Classes in this File Line Coverage Branch Coverage Complexity
ItunesCategoryType
75% 
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.itunes.elements;
 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 itunesCategoryType complex type.
 19  
  * 
 20  
  * <p>The following schema fragment specifies the expected content contained within this class.
 21  
  * 
 22  
  * <pre>
 23  
  * &lt;complexType name="itunesCategoryType">
 24  
  *   &lt;complexContent>
 25  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 26  
  *       &lt;attribute name="text" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 27  
  *     &lt;/restriction>
 28  
  *   &lt;/complexContent>
 29  
  * &lt;/complexType>
 30  
  * </pre>
 31  
  * 
 32  
  * 
 33  
  */
 34  
 @XmlAccessorType(XmlAccessType.FIELD)
 35  
 @XmlType(name = "itunesCategoryType")
 36  9
 public class ItunesCategoryType {
 37  
 
 38  
     @XmlAttribute(required = true)
 39  
     protected String text;
 40  
 
 41  
     /**
 42  
      * Gets the value of the text property.
 43  
      * 
 44  
      * @return
 45  
      *     possible object is
 46  
      *     {@link String }
 47  
      *     
 48  
      */
 49  
     public String getText() {
 50  0
         return text;
 51  
     }
 52  
 
 53  
     /**
 54  
      * Sets the value of the text property.
 55  
      * 
 56  
      * @param value
 57  
      *     allowed object is
 58  
      *     {@link String }
 59  
      *     
 60  
      */
 61  
     public void setText(String value) {
 62  3
         this.text = value;
 63  3
     }
 64  
 
 65  
 }