net.sf.sanity4j.gen.findbugs_1_3_9.PackageStats Maven / Gradle / Ivy
Show all versions of sanity4j Show documentation
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2013.04.03 at 10:38:17 AM EST
//
package net.sf.sanity4j.gen.findbugs_1_3_9;
import java.math.BigInteger;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://net.sf.sanity4j/namespace/findbugs-1.3.9}ClassStats" maxOccurs="unbounded"/>
* </sequence>
* <attribute name="package" type="{http://www.w3.org/2001/XMLSchema}NMTOKEN" />
* <attribute name="total_bugs" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="total_types" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="total_size" type="{http://www.w3.org/2001/XMLSchema}integer" />
* <attribute name="priority_2" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="priority_1" type="{http://www.w3.org/2001/XMLSchema}int" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"classStats"
})
@XmlRootElement(name = "PackageStats")
public class PackageStats {
@XmlElement(name = "ClassStats", required = true)
protected List classStats;
@XmlAttribute(name = "package")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "NMTOKEN")
protected java.lang.String _package;
@XmlAttribute(name = "total_bugs")
protected Integer totalBugs;
@XmlAttribute(name = "total_types")
protected Integer totalTypes;
@XmlAttribute(name = "total_size")
protected BigInteger totalSize;
@XmlAttribute(name = "priority_2")
protected Integer priority2;
@XmlAttribute(name = "priority_1")
protected Integer priority1;
/**
* Gets the value of the classStats property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the classStats property.
*
*
* For example, to add a new item, do as follows:
*
* getClassStats().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ClassStats }
*
*
*/
public List getClassStats() {
if (classStats == null) {
classStats = new ArrayList();
}
return this.classStats;
}
/**
* Gets the value of the package property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getPackage() {
return _package;
}
/**
* Sets the value of the package property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setPackage(java.lang.String value) {
this._package = value;
}
/**
* Gets the value of the totalBugs property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getTotalBugs() {
return totalBugs;
}
/**
* Sets the value of the totalBugs property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setTotalBugs(Integer value) {
this.totalBugs = value;
}
/**
* Gets the value of the totalTypes property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getTotalTypes() {
return totalTypes;
}
/**
* Sets the value of the totalTypes property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setTotalTypes(Integer value) {
this.totalTypes = value;
}
/**
* Gets the value of the totalSize property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getTotalSize() {
return totalSize;
}
/**
* Sets the value of the totalSize property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setTotalSize(BigInteger value) {
this.totalSize = value;
}
/**
* Gets the value of the priority2 property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getPriority2() {
return priority2;
}
/**
* Sets the value of the priority2 property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setPriority2(Integer value) {
this.priority2 = value;
}
/**
* Gets the value of the priority1 property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getPriority1() {
return priority1;
}
/**
* Sets the value of the priority1 property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setPriority1(Integer value) {
this.priority1 = value;
}
}