Coverage Report - yarfraw.generated.atom10.elements.UriType
 
Classes in this File Line Coverage Branch Coverage Complexity
UriType
42% 
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:37 AM EDT 
 6  
 //
 7  
 
 8  
 
 9  
 package yarfraw.generated.atom10.elements;
 10  
 
 11  
 import java.util.HashMap;
 12  
 import java.util.Map;
 13  
 import javax.xml.bind.annotation.XmlAccessType;
 14  
 import javax.xml.bind.annotation.XmlAccessorType;
 15  
 import javax.xml.bind.annotation.XmlAnyAttribute;
 16  
 import javax.xml.bind.annotation.XmlAttribute;
 17  
 import javax.xml.bind.annotation.XmlSchemaType;
 18  
 import javax.xml.bind.annotation.XmlType;
 19  
 import javax.xml.bind.annotation.XmlValue;
 20  
 import javax.xml.namespace.QName;
 21  
 
 22  
 
 23  
 /**
 24  
  * <p>Java class for uriType complex type.
 25  
  * 
 26  
  * <p>The following schema fragment specifies the expected content contained within this class.
 27  
  * 
 28  
  * <pre>
 29  
  * &lt;complexType name="uriType">
 30  
  *   &lt;simpleContent>
 31  
  *     &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>anyURI">
 32  
  *       &lt;attGroup ref="{http://www.w3.org/2005/Atom}commonAttributes"/>
 33  
  *     &lt;/extension>
 34  
  *   &lt;/simpleContent>
 35  
  * &lt;/complexType>
 36  
  * </pre>
 37  
  * 
 38  
  * 
 39  
  */
 40  
 @XmlAccessorType(XmlAccessType.FIELD)
 41  
 @XmlType(name = "uriType", propOrder = {
 42  
     "value"
 43  
 })
 44  159
 public class UriType {
 45  
 
 46  
     @XmlValue
 47  
     @XmlSchemaType(name = "anyURI")
 48  
     protected String value;
 49  
     @XmlAttribute(namespace = "http://www.w3.org/XML/1998/namespace")
 50  
     @XmlSchemaType(name = "anyURI")
 51  
     protected String base;
 52  
     @XmlAttribute(namespace = "http://www.w3.org/XML/1998/namespace")
 53  
     protected String lang;
 54  159
     @XmlAnyAttribute
 55  
     private Map<QName, String> otherAttributes = new HashMap<QName, String>();
 56  
 
 57  
     /**
 58  
      * Gets the value of the value property.
 59  
      * 
 60  
      * @return
 61  
      *     possible object is
 62  
      *     {@link String }
 63  
      *     
 64  
      */
 65  
     public String getValue() {
 66  150
         return value;
 67  
     }
 68  
 
 69  
     /**
 70  
      * Sets the value of the value property.
 71  
      * 
 72  
      * @param value
 73  
      *     allowed object is
 74  
      *     {@link String }
 75  
      *     
 76  
      */
 77  
     public void setValue(String value) {
 78  9
         this.value = value;
 79  9
     }
 80  
 
 81  
     /**
 82  
      * Gets the value of the base property.
 83  
      * 
 84  
      * @return
 85  
      *     possible object is
 86  
      *     {@link String }
 87  
      *     
 88  
      */
 89  
     public String getBase() {
 90  0
         return base;
 91  
     }
 92  
 
 93  
     /**
 94  
      * Sets the value of the base property.
 95  
      * 
 96  
      * @param value
 97  
      *     allowed object is
 98  
      *     {@link String }
 99  
      *     
 100  
      */
 101  
     public void setBase(String value) {
 102  0
         this.base = value;
 103  0
     }
 104  
 
 105  
     /**
 106  
      * Gets the value of the lang property.
 107  
      * 
 108  
      * @return
 109  
      *     possible object is
 110  
      *     {@link String }
 111  
      *     
 112  
      */
 113  
     public String getLang() {
 114  0
         return lang;
 115  
     }
 116  
 
 117  
     /**
 118  
      * Sets the value of the lang property.
 119  
      * 
 120  
      * @param value
 121  
      *     allowed object is
 122  
      *     {@link String }
 123  
      *     
 124  
      */
 125  
     public void setLang(String value) {
 126  0
         this.lang = value;
 127  0
     }
 128  
 
 129  
     /**
 130  
      * Gets a map that contains attributes that aren't bound to any typed property on this class.
 131  
      * 
 132  
      * <p>
 133  
      * the map is keyed by the name of the attribute and 
 134  
      * the value is the string value of the attribute.
 135  
      * 
 136  
      * the map returned by this method is live, and you can add new attribute
 137  
      * by updating the map directly. Because of this design, there's no setter.
 138  
      * 
 139  
      * 
 140  
      * @return
 141  
      *     always non-null
 142  
      */
 143  
     public Map<QName, String> getOtherAttributes() {
 144  0
         return otherAttributes;
 145  
     }
 146  
 
 147  
 }