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.28 at 12:01:55 PM GMT-10:00 
006    //
007    
008    
009    package org.hackystat.dailyprojectdata.resource.codeissue.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.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;attribute ref="{}Tool"/>
029     *       &lt;attribute ref="{}IssueType"/>
030     *       &lt;attribute ref="{}NumIssues"/>
031     *     &lt;/restriction>
032     *   &lt;/complexContent>
033     * &lt;/complexType>
034     * </pre>
035     * 
036     * 
037     */
038    @XmlAccessorType(XmlAccessType.FIELD)
039    @XmlType(name = "")
040    @XmlRootElement(name = "CodeIssueData")
041    public class CodeIssueData
042        implements Serializable
043    {
044    
045        private final static long serialVersionUID = 12343L;
046        @XmlAttribute(name = "Tool")
047        protected String tool;
048        @XmlAttribute(name = "IssueType")
049        protected String issueType;
050        @XmlAttribute(name = "NumIssues")
051        protected Integer numIssues;
052    
053        /**
054         * Gets the value of the tool property.
055         * 
056         * @return
057         *     possible object is
058         *     {@link String }
059         *     
060         */
061        public String getTool() {
062            return tool;
063        }
064    
065        /**
066         * Sets the value of the tool property.
067         * 
068         * @param value
069         *     allowed object is
070         *     {@link String }
071         *     
072         */
073        public void setTool(String value) {
074            this.tool = value;
075        }
076    
077        public boolean isSetTool() {
078            return (this.tool!= null);
079        }
080    
081        /**
082         * Gets the value of the issueType property.
083         * 
084         * @return
085         *     possible object is
086         *     {@link String }
087         *     
088         */
089        public String getIssueType() {
090            return issueType;
091        }
092    
093        /**
094         * Sets the value of the issueType property.
095         * 
096         * @param value
097         *     allowed object is
098         *     {@link String }
099         *     
100         */
101        public void setIssueType(String value) {
102            this.issueType = value;
103        }
104    
105        public boolean isSetIssueType() {
106            return (this.issueType!= null);
107        }
108    
109        /**
110         * Gets the value of the numIssues property.
111         * 
112         * @return
113         *     possible object is
114         *     {@link Integer }
115         *     
116         */
117        public int getNumIssues() {
118            return numIssues;
119        }
120    
121        /**
122         * Sets the value of the numIssues property.
123         * 
124         * @param value
125         *     allowed object is
126         *     {@link Integer }
127         *     
128         */
129        public void setNumIssues(int value) {
130            this.numIssues = value;
131        }
132    
133        public boolean isSetNumIssues() {
134            return (this.numIssues!= null);
135        }
136    
137        public void unsetNumIssues() {
138            this.numIssues = null;
139        }
140    
141    }