Testsuite.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.XmlElement;
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="{}properties" minOccurs="0"/>
* <element ref="{}testcase" maxOccurs="unbounded" minOccurs="0"/>
* <element ref="{}system-out" minOccurs="0"/>
* <element ref="{}system-err" minOccurs="0"/>
* </sequence>
* <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="tests" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="failures" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="errors" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="time" type="{http://www.w3.org/2001/XMLSchema}long" />
* <attribute name="disabled" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="skipped" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="timestamp" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="hostname" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="package" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"properties",
"testcase",
"systemOut",
"systemErr"
})
@XmlRootElement(name = "testsuite")
public class Testsuite {
protected Properties properties;
protected List<Testcase> testcase;
@XmlElement(name = "system-out")
protected String systemOut;
@XmlElement(name = "system-err")
protected String systemErr;
@XmlAttribute(name = "name", required = true)
protected String name;
@XmlAttribute(name = "tests", required = true)
protected int tests;
@XmlAttribute(name = "failures")
protected Integer failures;
@XmlAttribute(name = "errors")
protected Integer errors;
@XmlAttribute(name = "time")
protected Long time;
@XmlAttribute(name = "disabled")
protected Integer disabled;
@XmlAttribute(name = "skipped")
protected Integer skipped;
@XmlAttribute(name = "timestamp")
protected String timestamp;
@XmlAttribute(name = "hostname")
protected String hostname;
@XmlAttribute(name = "id")
protected String id;
@XmlAttribute(name = "package")
protected String _package;
/**
* Gets the value of the properties property.
*
* @return
* possible object is
* {@link Properties }
*
*/
public Properties getProperties() {
return properties;
}
/**
* Sets the value of the properties property.
*
* @param value
* allowed object is
* {@link Properties }
*
*/
public void setProperties(Properties value) {
this.properties = value;
}
/**
* Gets the value of the testcase 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 testcase property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getTestcase().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link Testcase }
*
*
*/
public List<Testcase> getTestcase() {
if (testcase == null) {
testcase = new ArrayList<Testcase>();
}
return this.testcase;
}
/**
* Gets the value of the systemOut property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSystemOut() {
return systemOut;
}
/**
* Sets the value of the systemOut property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSystemOut(String value) {
this.systemOut = value;
}
/**
* Gets the value of the systemErr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSystemErr() {
return systemErr;
}
/**
* Sets the value of the systemErr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSystemErr(String value) {
this.systemErr = value;
}
/**
* 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 tests property.
*
*/
public int getTests() {
return tests;
}
/**
* Sets the value of the tests property.
*
*/
public void setTests(int 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 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;
}
/**
* 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 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 skipped property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getSkipped() {
return skipped;
}
/**
* Sets the value of the skipped property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setSkipped(Integer value) {
this.skipped = value;
}
/**
* Gets the value of the timestamp property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTimestamp() {
return timestamp;
}
/**
* Sets the value of the timestamp property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTimestamp(String value) {
this.timestamp = value;
}
/**
* Gets the value of the hostname property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getHostname() {
return hostname;
}
/**
* Sets the value of the hostname property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setHostname(String value) {
this.hostname = value;
}
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(String value) {
this.id = value;
}
/**
* Gets the value of the package property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPackage() {
return _package;
}
/**
* Sets the value of the package property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPackage(String value) {
this._package = value;
}
}