Testsuites.java
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2015.09.30 at 09:12:12 PM UTC
//
package ch.powerunit.report;
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.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{}testsuite" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="time" type="{http://www.w3.org/2001/XMLSchema}long" />
* <attribute name="tests" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="failures" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="disabled" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="errors" type="{http://www.w3.org/2001/XMLSchema}int" />
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"testsuite"
})
@XmlRootElement(name = "testsuites")
public class Testsuites {
protected List<Testsuite> testsuite;
@XmlAttribute(name = "name")
protected String name;
@XmlAttribute(name = "time")
protected Long time;
@XmlAttribute(name = "tests")
protected Integer tests;
@XmlAttribute(name = "failures")
protected Integer failures;
@XmlAttribute(name = "disabled")
protected Integer disabled;
@XmlAttribute(name = "errors")
protected Integer errors;
/**
* Gets the value of the testsuite property.
*
* <p>
* 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 <CODE>set</CODE> method for the testsuite property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getTestsuite().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link Testsuite }
*
*
*/
public List<Testsuite> getTestsuite() {
if (testsuite == null) {
testsuite = new ArrayList<Testsuite>();
}
return this.testsuite;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the time property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getTime() {
return time;
}
/**
* Sets the value of the time property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setTime(Long value) {
this.time = value;
}
/**
* Gets the value of the tests property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getTests() {
return tests;
}
/**
* Sets the value of the tests property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setTests(Integer value) {
this.tests = value;
}
/**
* Gets the value of the failures property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getFailures() {
return failures;
}
/**
* Sets the value of the failures property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setFailures(Integer value) {
this.failures = value;
}
/**
* Gets the value of the disabled property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getDisabled() {
return disabled;
}
/**
* Sets the value of the disabled property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setDisabled(Integer value) {
this.disabled = value;
}
/**
* Gets the value of the errors property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getErrors() {
return errors;
}
/**
* Sets the value of the errors property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setErrors(Integer value) {
this.errors = value;
}
}