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