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