Coverage Report - yarfraw.generated.rss20.elements.TTextInput
 
Classes in this File Line Coverage Branch Coverage Complexity
TTextInput
N/A 
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:38 AM EDT 
 6  
 //
 7  
 
 8  
 
 9  
 package yarfraw.generated.rss20.elements;
 10  
 
 11  
 import javax.xml.bind.annotation.XmlAccessType;
 12  
 import javax.xml.bind.annotation.XmlAccessorType;
 13  
 import javax.xml.bind.annotation.XmlElement;
 14  
 import javax.xml.bind.annotation.XmlSchemaType;
 15  
 import javax.xml.bind.annotation.XmlType;
 16  
 
 17  
 
 18  
 /**
 19  
  * The purpose of this element is something of a mystery! You can use it to specify a search engine box. Or to allow a reader to provide feedback. Most aggregators ignore it.
 20  
  * 
 21  
  * <p>Java class for tTextInput complex type.
 22  
  * 
 23  
  * <p>The following schema fragment specifies the expected content contained within this class.
 24  
  * 
 25  
  * <pre>
 26  
  * &lt;complexType name="tTextInput">
 27  
  *   &lt;complexContent>
 28  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 29  
  *       &lt;all>
 30  
  *         &lt;element name="title" type="{http://www.w3.org/2001/XMLSchema}string"/>
 31  
  *         &lt;element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
 32  
  *         &lt;element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
 33  
  *         &lt;element name="link" type="{http://www.w3.org/2001/XMLSchema}anyURI"/>
 34  
  *       &lt;/all>
 35  
  *     &lt;/restriction>
 36  
  *   &lt;/complexContent>
 37  
  * &lt;/complexType>
 38  
  * </pre>
 39  
  * 
 40  
  * 
 41  
  */
 42  
 @XmlAccessorType(XmlAccessType.FIELD)
 43  
 @XmlType(name = "tTextInput", propOrder = {
 44  
 
 45  
 })
 46  
 public class TTextInput {
 47  
 
 48  
     @XmlElement(required = true)
 49  
     protected String title;
 50  
     @XmlElement(required = true)
 51  
     protected String description;
 52  
     @XmlElement(required = true)
 53  
     protected String name;
 54  
     @XmlElement(required = true)
 55  
     @XmlSchemaType(name = "anyURI")
 56  
     protected String link;
 57  
 
 58  
     /**
 59  
      * Gets the value of the title property.
 60  
      * 
 61  
      * @return
 62  
      *     possible object is
 63  
      *     {@link String }
 64  
      *     
 65  
      */
 66  
     public String getTitle() {
 67  
         return title;
 68  
     }
 69  
 
 70  
     /**
 71  
      * Sets the value of the title property.
 72  
      * 
 73  
      * @param value
 74  
      *     allowed object is
 75  
      *     {@link String }
 76  
      *     
 77  
      */
 78  
     public void setTitle(String value) {
 79  
         this.title = value;
 80  
     }
 81  
 
 82  
     /**
 83  
      * Gets the value of the description property.
 84  
      * 
 85  
      * @return
 86  
      *     possible object is
 87  
      *     {@link String }
 88  
      *     
 89  
      */
 90  
     public String getDescription() {
 91  
         return description;
 92  
     }
 93  
 
 94  
     /**
 95  
      * Sets the value of the description property.
 96  
      * 
 97  
      * @param value
 98  
      *     allowed object is
 99  
      *     {@link String }
 100  
      *     
 101  
      */
 102  
     public void setDescription(String value) {
 103  
         this.description = value;
 104  
     }
 105  
 
 106  
     /**
 107  
      * Gets the value of the name property.
 108  
      * 
 109  
      * @return
 110  
      *     possible object is
 111  
      *     {@link String }
 112  
      *     
 113  
      */
 114  
     public String getName() {
 115  
         return name;
 116  
     }
 117  
 
 118  
     /**
 119  
      * Sets the value of the name property.
 120  
      * 
 121  
      * @param value
 122  
      *     allowed object is
 123  
      *     {@link String }
 124  
      *     
 125  
      */
 126  
     public void setName(String value) {
 127  
         this.name = value;
 128  
     }
 129  
 
 130  
     /**
 131  
      * Gets the value of the link property.
 132  
      * 
 133  
      * @return
 134  
      *     possible object is
 135  
      *     {@link String }
 136  
      *     
 137  
      */
 138  
     public String getLink() {
 139  
         return link;
 140  
     }
 141  
 
 142  
     /**
 143  
      * Sets the value of the link property.
 144  
      * 
 145  
      * @param value
 146  
      *     allowed object is
 147  
      *     {@link String }
 148  
      *     
 149  
      */
 150  
     public void setLink(String value) {
 151  
         this.link = value;
 152  
     }
 153  
 
 154  
 }