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.01.25 at 09:11:56 AM GMT-10:00 
006    //
007    
008    
009    package org.hackystat.sensor.ant.javancss.jaxb;
010    
011    import javax.xml.bind.annotation.XmlAccessType;
012    import javax.xml.bind.annotation.XmlAccessorType;
013    import javax.xml.bind.annotation.XmlElement;
014    import javax.xml.bind.annotation.XmlRootElement;
015    import javax.xml.bind.annotation.XmlType;
016    
017    
018    /**
019     * <p>Java class for anonymous complex type.
020     * 
021     * <p>The following schema fragment specifies the expected content contained within this class.
022     * 
023     * <pre>
024     * &lt;complexType>
025     *   &lt;complexContent>
026     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
027     *       &lt;sequence>
028     *         &lt;element name="ncss" type="{http://www.w3.org/2001/XMLSchema}string"/>
029     *         &lt;element name="functions" type="{http://www.w3.org/2001/XMLSchema}string"/>
030     *         &lt;element name="classes" type="{http://www.w3.org/2001/XMLSchema}string"/>
031     *         &lt;element name="javadocs" type="{http://www.w3.org/2001/XMLSchema}string"/>
032     *       &lt;/sequence>
033     *     &lt;/restriction>
034     *   &lt;/complexContent>
035     * &lt;/complexType>
036     * </pre>
037     * 
038     * 
039     */
040    @XmlAccessorType(XmlAccessType.FIELD)
041    @XmlType(name = "", propOrder = {
042        "ncss",
043        "functions",
044        "classes",
045        "javadocs"
046    })
047    @XmlRootElement(name = "averages")
048    public class Averages {
049    
050        @XmlElement(required = true)
051        protected String ncss;
052        @XmlElement(required = true)
053        protected String functions;
054        @XmlElement(required = true)
055        protected String classes;
056        @XmlElement(required = true)
057        protected String javadocs;
058    
059        /**
060         * Gets the value of the ncss property.
061         * 
062         * @return
063         *     possible object is
064         *     {@link String }
065         *     
066         */
067        public String getNcss() {
068            return ncss;
069        }
070    
071        /**
072         * Sets the value of the ncss property.
073         * 
074         * @param value
075         *     allowed object is
076         *     {@link String }
077         *     
078         */
079        public void setNcss(String value) {
080            this.ncss = value;
081        }
082    
083        /**
084         * Gets the value of the functions property.
085         * 
086         * @return
087         *     possible object is
088         *     {@link String }
089         *     
090         */
091        public String getFunctions() {
092            return functions;
093        }
094    
095        /**
096         * Sets the value of the functions property.
097         * 
098         * @param value
099         *     allowed object is
100         *     {@link String }
101         *     
102         */
103        public void setFunctions(String value) {
104            this.functions = value;
105        }
106    
107        /**
108         * Gets the value of the classes property.
109         * 
110         * @return
111         *     possible object is
112         *     {@link String }
113         *     
114         */
115        public String getClasses() {
116            return classes;
117        }
118    
119        /**
120         * Sets the value of the classes property.
121         * 
122         * @param value
123         *     allowed object is
124         *     {@link String }
125         *     
126         */
127        public void setClasses(String value) {
128            this.classes = value;
129        }
130    
131        /**
132         * Gets the value of the javadocs property.
133         * 
134         * @return
135         *     possible object is
136         *     {@link String }
137         *     
138         */
139        public String getJavadocs() {
140            return javadocs;
141        }
142    
143        /**
144         * Sets the value of the javadocs property.
145         * 
146         * @param value
147         *     allowed object is
148         *     {@link String }
149         *     
150         */
151        public void setJavadocs(String value) {
152            this.javadocs = value;
153        }
154    
155    }