Coverage Report - yarfraw.generated.mrss.elements.MrssPlayerType
 
Classes in this File Line Coverage Branch Coverage Complexity
MrssPlayerType
70% 
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 java.math.BigInteger;
 12  
 import javax.xml.bind.annotation.XmlAccessType;
 13  
 import javax.xml.bind.annotation.XmlAccessorType;
 14  
 import javax.xml.bind.annotation.XmlAttribute;
 15  
 import javax.xml.bind.annotation.XmlSchemaType;
 16  
 import javax.xml.bind.annotation.XmlType;
 17  
 
 18  
 
 19  
 /**
 20  
  * <p>Java class for mrssPlayerType complex type.
 21  
  * 
 22  
  * <p>The following schema fragment specifies the expected content contained within this class.
 23  
  * 
 24  
  * <pre>
 25  
  * &lt;complexType name="mrssPlayerType">
 26  
  *   &lt;complexContent>
 27  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 28  
  *       &lt;attribute name="url" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
 29  
  *       &lt;attribute name="height" type="{http://www.w3.org/2001/XMLSchema}integer" />
 30  
  *       &lt;attribute name="width" type="{http://www.w3.org/2001/XMLSchema}integer" />
 31  
  *     &lt;/restriction>
 32  
  *   &lt;/complexContent>
 33  
  * &lt;/complexType>
 34  
  * </pre>
 35  
  * 
 36  
  * 
 37  
  */
 38  
 @XmlAccessorType(XmlAccessType.FIELD)
 39  
 @XmlType(name = "mrssPlayerType")
 40  15
 public class MrssPlayerType {
 41  
 
 42  
     @XmlAttribute(required = true)
 43  
     @XmlSchemaType(name = "anyURI")
 44  
     protected String url;
 45  
     @XmlAttribute
 46  
     protected BigInteger height;
 47  
     @XmlAttribute
 48  
     protected BigInteger width;
 49  
 
 50  
     /**
 51  
      * Gets the value of the url property.
 52  
      * 
 53  
      * @return
 54  
      *     possible object is
 55  
      *     {@link String }
 56  
      *     
 57  
      */
 58  
     public String getUrl() {
 59  0
         return url;
 60  
     }
 61  
 
 62  
     /**
 63  
      * Sets the value of the url property.
 64  
      * 
 65  
      * @param value
 66  
      *     allowed object is
 67  
      *     {@link String }
 68  
      *     
 69  
      */
 70  
     public void setUrl(String value) {
 71  3
         this.url = value;
 72  3
     }
 73  
 
 74  
     /**
 75  
      * Gets the value of the height property.
 76  
      * 
 77  
      * @return
 78  
      *     possible object is
 79  
      *     {@link BigInteger }
 80  
      *     
 81  
      */
 82  
     public BigInteger getHeight() {
 83  0
         return height;
 84  
     }
 85  
 
 86  
     /**
 87  
      * Sets the value of the height property.
 88  
      * 
 89  
      * @param value
 90  
      *     allowed object is
 91  
      *     {@link BigInteger }
 92  
      *     
 93  
      */
 94  
     public void setHeight(BigInteger value) {
 95  3
         this.height = value;
 96  3
     }
 97  
 
 98  
     /**
 99  
      * Gets the value of the width property.
 100  
      * 
 101  
      * @return
 102  
      *     possible object is
 103  
      *     {@link BigInteger }
 104  
      *     
 105  
      */
 106  
     public BigInteger getWidth() {
 107  0
         return width;
 108  
     }
 109  
 
 110  
     /**
 111  
      * Sets the value of the width property.
 112  
      * 
 113  
      * @param value
 114  
      *     allowed object is
 115  
      *     {@link BigInteger }
 116  
      *     
 117  
      */
 118  
     public void setWidth(BigInteger value) {
 119  3
         this.width = value;
 120  3
     }
 121  
 
 122  
 }