001    //
002    // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.5-b01-fcs 
003    // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
004    // Any modifications to this file will be lost upon recompilation of the source schema. 
005    // Generated on: 2008.07.15 at 10:02:34 AM GMT-10:00 
006    //
007    
008    
009    package org.hackystat.telemetry.service.resource.chart.jaxb;
010    
011    import java.io.Serializable;
012    import javax.xml.bind.annotation.XmlAccessType;
013    import javax.xml.bind.annotation.XmlAccessorType;
014    import javax.xml.bind.annotation.XmlAttribute;
015    import javax.xml.bind.annotation.XmlRootElement;
016    import javax.xml.bind.annotation.XmlSchemaType;
017    import javax.xml.bind.annotation.XmlType;
018    import javax.xml.datatype.XMLGregorianCalendar;
019    
020    
021    /**
022     * <p>Java class for anonymous complex type.
023     * 
024     * <p>The following schema fragment specifies the expected content contained within this class.
025     * 
026     * <pre>
027     * &lt;complexType>
028     *   &lt;complexContent>
029     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
030     *       &lt;attribute ref="{}Time use="required""/>
031     *       &lt;attribute ref="{}Value use="required""/>
032     *     &lt;/restriction>
033     *   &lt;/complexContent>
034     * &lt;/complexType>
035     * </pre>
036     * 
037     * 
038     */
039    @XmlAccessorType(XmlAccessType.FIELD)
040    @XmlType(name = "")
041    @XmlRootElement(name = "TelemetryPoint")
042    public class TelemetryPoint
043        implements Serializable
044    {
045    
046        private final static long serialVersionUID = 12343L;
047        @XmlAttribute(name = "Time", required = true)
048        @XmlSchemaType(name = "date")
049        protected XMLGregorianCalendar time;
050        @XmlAttribute(name = "Value", required = true)
051        protected String value;
052    
053        /**
054         * Gets the value of the time property.
055         * 
056         * @return
057         *     possible object is
058         *     {@link XMLGregorianCalendar }
059         *     
060         */
061        public XMLGregorianCalendar getTime() {
062            return time;
063        }
064    
065        /**
066         * Sets the value of the time property.
067         * 
068         * @param value
069         *     allowed object is
070         *     {@link XMLGregorianCalendar }
071         *     
072         */
073        public void setTime(XMLGregorianCalendar value) {
074            this.time = value;
075        }
076    
077        public boolean isSetTime() {
078            return (this.time!= null);
079        }
080    
081        /**
082         * Gets the value of the value property.
083         * 
084         * @return
085         *     possible object is
086         *     {@link String }
087         *     
088         */
089        public String getValue() {
090            return value;
091        }
092    
093        /**
094         * Sets the value of the value property.
095         * 
096         * @param value
097         *     allowed object is
098         *     {@link String }
099         *     
100         */
101        public void setValue(String value) {
102            this.value = value;
103        }
104    
105        public boolean isSetValue() {
106            return (this.value!= null);
107        }
108    
109    }