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.03.24 at 12:05:53 PM HST 
006    //
007    
008    
009    package org.hackystat.dailyprojectdata.resource.filemetric.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    
019    
020    /**
021     * <p>Java class for anonymous complex type.
022     * 
023     * <p>The following schema fragment specifies the expected content contained within this class.
024     * 
025     * <pre>
026     * &lt;complexType>
027     *   &lt;complexContent>
028     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
029     *       &lt;attribute ref="{}FileUri use="required""/>
030     *       &lt;attribute ref="{}SizeMetricValue use="required""/>
031     *     &lt;/restriction>
032     *   &lt;/complexContent>
033     * &lt;/complexType>
034     * </pre>
035     * 
036     * 
037     */
038    @XmlAccessorType(XmlAccessType.FIELD)
039    @XmlType(name = "")
040    @XmlRootElement(name = "FileData")
041    public class FileData
042        implements Serializable
043    {
044    
045        private final static long serialVersionUID = 12343L;
046        @XmlAttribute(name = "FileUri", required = true)
047        @XmlSchemaType(name = "anyURI")
048        protected String fileUri;
049        @XmlAttribute(name = "SizeMetricValue", required = true)
050        protected double sizeMetricValue;
051    
052        /**
053         * Gets the value of the fileUri property.
054         * 
055         * @return
056         *     possible object is
057         *     {@link String }
058         *     
059         */
060        public String getFileUri() {
061            return fileUri;
062        }
063    
064        /**
065         * Sets the value of the fileUri property.
066         * 
067         * @param value
068         *     allowed object is
069         *     {@link String }
070         *     
071         */
072        public void setFileUri(String value) {
073            this.fileUri = value;
074        }
075    
076        public boolean isSetFileUri() {
077            return (this.fileUri!= null);
078        }
079    
080        /**
081         * Gets the value of the sizeMetricValue property.
082         * 
083         */
084        public double getSizeMetricValue() {
085            return sizeMetricValue;
086        }
087    
088        /**
089         * Sets the value of the sizeMetricValue property.
090         * 
091         */
092        public void setSizeMetricValue(double value) {
093            this.sizeMetricValue = value;
094        }
095    
096        public boolean isSetSizeMetricValue() {
097            return true;
098        }
099    
100    }