Coverage Report - yarfraw.generated.rss10.elements.Li
 
Classes in this File Line Coverage Branch Coverage Complexity
Li
100% 
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.rss10.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.XmlRootElement;
 15  
 import javax.xml.bind.annotation.XmlSchemaType;
 16  
 import javax.xml.bind.annotation.XmlType;
 17  
 
 18  
 
 19  
 /**
 20  
  * <p>Java class for anonymous complex type.
 21  
  * 
 22  
  * <p>The following schema fragment specifies the expected content contained within this class.
 23  
  * 
 24  
  * <pre>
 25  
  * &lt;complexType>
 26  
  *   &lt;complexContent>
 27  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 28  
  *       &lt;attribute name="resource" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
 29  
  *     &lt;/restriction>
 30  
  *   &lt;/complexContent>
 31  
  * &lt;/complexType>
 32  
  * </pre>
 33  
  * 
 34  
  * 
 35  
  */
 36  
 @XmlAccessorType(XmlAccessType.FIELD)
 37  
 @XmlType(name = "")
 38  
 @XmlRootElement(name = "li", namespace = "http://www.w3.org/1999/02/22-rdf-syntax-ns#")
 39  279
 public class Li {
 40  
 
 41  
     @XmlAttribute(required = true)
 42  
     @XmlSchemaType(name = "anySimpleType")
 43  
     protected String resource;
 44  
 
 45  
     /**
 46  
      * Gets the value of the resource property.
 47  
      * 
 48  
      * @return
 49  
      *     possible object is
 50  
      *     {@link String }
 51  
      *     
 52  
      */
 53  
     public String getResource() {
 54  228
         return resource;
 55  
     }
 56  
 
 57  
     /**
 58  
      * Sets the value of the resource property.
 59  
      * 
 60  
      * @param value
 61  
      *     allowed object is
 62  
      *     {@link String }
 63  
      *     
 64  
      */
 65  
     public void setResource(String value) {
 66  51
         this.resource = value;
 67  51
     }
 68  
 
 69  
 }