com.googlecode.refit.runner.jaxb.Summary Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2011.03.28 at 08:05:15 PM MESZ
//
package com.googlecode.refit.runner.jaxb;
import java.io.Serializable;
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.XmlType;
/**
* Java class for Summary complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Summary">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="inputDir" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="outputDir" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="numTests" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="test" type="{http://refit.googlecode.com/report}TestResult" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <attGroup ref="{http://refit.googlecode.com/report}Statistics"/>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Summary", propOrder = {
"inputDir",
"outputDir",
"numTests",
"test"
})
public class Summary
implements Serializable
{
private final static long serialVersionUID = 1L;
@XmlElement(required = true)
protected String inputDir;
@XmlElement(required = true)
protected String outputDir;
protected int numTests;
protected List test;
@XmlAttribute(name = "passed", required = true)
protected boolean passed;
@XmlAttribute(name = "right", required = true)
protected int right;
@XmlAttribute(name = "wrong", required = true)
protected int wrong;
@XmlAttribute(name = "ignored", required = true)
protected int ignored;
@XmlAttribute(name = "exceptions", required = true)
protected int exceptions;
/**
* Gets the value of the inputDir property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getInputDir() {
return inputDir;
}
/**
* Sets the value of the inputDir property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setInputDir(String value) {
this.inputDir = value;
}
/**
* Gets the value of the outputDir property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOutputDir() {
return outputDir;
}
/**
* Sets the value of the outputDir property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOutputDir(String value) {
this.outputDir = value;
}
/**
* Gets the value of the numTests property.
*
*/
public int getNumTests() {
return numTests;
}
/**
* Sets the value of the numTests property.
*
*/
public void setNumTests(int value) {
this.numTests = value;
}
/**
* Gets the value of the test 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 test property.
*
*
* For example, to add a new item, do as follows:
*
* getTest().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link TestResult }
*
*
*/
public List getTest() {
if (test == null) {
test = new ArrayList();
}
return this.test;
}
/**
* Gets the value of the passed property.
*
*/
public boolean isPassed() {
return passed;
}
/**
* Sets the value of the passed property.
*
*/
public void setPassed(boolean value) {
this.passed = value;
}
/**
* Gets the value of the right property.
*
*/
public int getRight() {
return right;
}
/**
* Sets the value of the right property.
*
*/
public void setRight(int value) {
this.right = value;
}
/**
* Gets the value of the wrong property.
*
*/
public int getWrong() {
return wrong;
}
/**
* Sets the value of the wrong property.
*
*/
public void setWrong(int value) {
this.wrong = value;
}
/**
* Gets the value of the ignored property.
*
*/
public int getIgnored() {
return ignored;
}
/**
* Sets the value of the ignored property.
*
*/
public void setIgnored(int value) {
this.ignored = value;
}
/**
* Gets the value of the exceptions property.
*
*/
public int getExceptions() {
return exceptions;
}
/**
* Sets the value of the exceptions property.
*
*/
public void setExceptions(int value) {
this.exceptions = value;
}
}