Coverage Report - yarfraw.generated.mrss.elements.MrssTextType
 
Classes in this File Line Coverage Branch Coverage Complexity
MrssTextType
69% 
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.XmlType;
 15  
 import javax.xml.bind.annotation.XmlValue;
 16  
 
 17  
 
 18  
 /**
 19  
  * <p>Java class for mrssTextType complex type.
 20  
  * 
 21  
  * <p>The following schema fragment specifies the expected content contained within this class.
 22  
  * 
 23  
  * <pre>
 24  
  * &lt;complexType name="mrssTextType">
 25  
  *   &lt;simpleContent>
 26  
  *     &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>string">
 27  
  *       &lt;attribute name="type">
 28  
  *         &lt;simpleType>
 29  
  *           &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
 30  
  *             &lt;enumeration value="plain"/>
 31  
  *             &lt;enumeration value="html"/>
 32  
  *           &lt;/restriction>
 33  
  *         &lt;/simpleType>
 34  
  *       &lt;/attribute>
 35  
  *       &lt;attribute name="lang" type="{http://www.w3.org/2001/XMLSchema}string" />
 36  
  *       &lt;attribute name="start" type="{http://www.w3.org/2001/XMLSchema}string" />
 37  
  *       &lt;attribute name="end" type="{http://www.w3.org/2001/XMLSchema}string" />
 38  
  *     &lt;/extension>
 39  
  *   &lt;/simpleContent>
 40  
  * &lt;/complexType>
 41  
  * </pre>
 42  
  * 
 43  
  * 
 44  
  */
 45  
 @XmlAccessorType(XmlAccessType.FIELD)
 46  
 @XmlType(name = "mrssTextType", propOrder = {
 47  
     "value"
 48  
 })
 49  15
 public class MrssTextType {
 50  
 
 51  
     @XmlValue
 52  
     protected String value;
 53  
     @XmlAttribute
 54  
     protected String type;
 55  
     @XmlAttribute
 56  
     protected String lang;
 57  
     @XmlAttribute
 58  
     protected String start;
 59  
     @XmlAttribute
 60  
     protected String end;
 61  
 
 62  
     /**
 63  
      * Gets the value of the value property.
 64  
      * 
 65  
      * @return
 66  
      *     possible object is
 67  
      *     {@link String }
 68  
      *     
 69  
      */
 70  
     public String getValue() {
 71  0
         return value;
 72  
     }
 73  
 
 74  
     /**
 75  
      * Sets the value of the value property.
 76  
      * 
 77  
      * @param value
 78  
      *     allowed object is
 79  
      *     {@link String }
 80  
      *     
 81  
      */
 82  
     public void setValue(String value) {
 83  3
         this.value = value;
 84  3
     }
 85  
 
 86  
     /**
 87  
      * Gets the value of the type property.
 88  
      * 
 89  
      * @return
 90  
      *     possible object is
 91  
      *     {@link String }
 92  
      *     
 93  
      */
 94  
     public String getType() {
 95  0
         return type;
 96  
     }
 97  
 
 98  
     /**
 99  
      * Sets the value of the type property.
 100  
      * 
 101  
      * @param value
 102  
      *     allowed object is
 103  
      *     {@link String }
 104  
      *     
 105  
      */
 106  
     public void setType(String value) {
 107  3
         this.type = value;
 108  3
     }
 109  
 
 110  
     /**
 111  
      * Gets the value of the lang property.
 112  
      * 
 113  
      * @return
 114  
      *     possible object is
 115  
      *     {@link String }
 116  
      *     
 117  
      */
 118  
     public String getLang() {
 119  0
         return lang;
 120  
     }
 121  
 
 122  
     /**
 123  
      * Sets the value of the lang property.
 124  
      * 
 125  
      * @param value
 126  
      *     allowed object is
 127  
      *     {@link String }
 128  
      *     
 129  
      */
 130  
     public void setLang(String value) {
 131  3
         this.lang = value;
 132  3
     }
 133  
 
 134  
     /**
 135  
      * Gets the value of the start property.
 136  
      * 
 137  
      * @return
 138  
      *     possible object is
 139  
      *     {@link String }
 140  
      *     
 141  
      */
 142  
     public String getStart() {
 143  0
         return start;
 144  
     }
 145  
 
 146  
     /**
 147  
      * Sets the value of the start property.
 148  
      * 
 149  
      * @param value
 150  
      *     allowed object is
 151  
      *     {@link String }
 152  
      *     
 153  
      */
 154  
     public void setStart(String value) {
 155  3
         this.start = value;
 156  3
     }
 157  
 
 158  
     /**
 159  
      * Gets the value of the end property.
 160  
      * 
 161  
      * @return
 162  
      *     possible object is
 163  
      *     {@link String }
 164  
      *     
 165  
      */
 166  
     public String getEnd() {
 167  0
         return end;
 168  
     }
 169  
 
 170  
     /**
 171  
      * Sets the value of the end property.
 172  
      * 
 173  
      * @param value
 174  
      *     allowed object is
 175  
      *     {@link String }
 176  
      *     
 177  
      */
 178  
     public void setEnd(String value) {
 179  3
         this.end = value;
 180  3
     }
 181  
 
 182  
 }