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