Coverage Report - yarfraw.generated.mrss.elements.MrssCopyrightType
 
Classes in this File Line Coverage Branch Coverage Complexity
MrssCopyrightType
71% 
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.mrss.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.XmlSchemaType;
 15  
 import javax.xml.bind.annotation.XmlType;
 16  
 import javax.xml.bind.annotation.XmlValue;
 17  
 
 18  
 
 19  
 /**
 20  
  * <p>Java class for mrssCopyrightType complex type.
 21  
  * 
 22  
  * <p>The following schema fragment specifies the expected content contained within this class.
 23  
  * 
 24  
  * <pre>
 25  
  * &lt;complexType name="mrssCopyrightType">
 26  
  *   &lt;simpleContent>
 27  
  *     &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>string">
 28  
  *       &lt;attribute name="url" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
 29  
  *     &lt;/extension>
 30  
  *   &lt;/simpleContent>
 31  
  * &lt;/complexType>
 32  
  * </pre>
 33  
  * 
 34  
  * 
 35  
  */
 36  
 @XmlAccessorType(XmlAccessType.FIELD)
 37  
 @XmlType(name = "mrssCopyrightType", propOrder = {
 38  
     "value"
 39  
 })
 40  15
 public class MrssCopyrightType {
 41  
 
 42  
     @XmlValue
 43  
     protected String value;
 44  
     @XmlAttribute
 45  
     @XmlSchemaType(name = "anyURI")
 46  
     protected String url;
 47  
 
 48  
     /**
 49  
      * Gets the value of the value property.
 50  
      * 
 51  
      * @return
 52  
      *     possible object is
 53  
      *     {@link String }
 54  
      *     
 55  
      */
 56  
     public String getValue() {
 57  0
         return value;
 58  
     }
 59  
 
 60  
     /**
 61  
      * Sets the value of the value property.
 62  
      * 
 63  
      * @param value
 64  
      *     allowed object is
 65  
      *     {@link String }
 66  
      *     
 67  
      */
 68  
     public void setValue(String value) {
 69  3
         this.value = value;
 70  3
     }
 71  
 
 72  
     /**
 73  
      * Gets the value of the url property.
 74  
      * 
 75  
      * @return
 76  
      *     possible object is
 77  
      *     {@link String }
 78  
      *     
 79  
      */
 80  
     public String getUrl() {
 81  0
         return url;
 82  
     }
 83  
 
 84  
     /**
 85  
      * Sets the value of the url property.
 86  
      * 
 87  
      * @param value
 88  
      *     allowed object is
 89  
      *     {@link String }
 90  
      *     
 91  
      */
 92  
     public void setUrl(String value) {
 93  3
         this.url = value;
 94  3
     }
 95  
 
 96  
 }