All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.googlecode.refit.runner.jaxb.TestResult Maven / Gradle / Ivy

There is a newer version: 1.8.0
Show newest version
//
// 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 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 TestResult complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="TestResult">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="path" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *       <attGroup ref="{http://refit.googlecode.com/report}Statistics"/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TestResult", propOrder = { "path" }) public class TestResult implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(required = true) protected String path; @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 path property. * * @return * possible object is * {@link String } * */ public String getPath() { return path; } /** * Sets the value of the path property. * * @param value * allowed object is * {@link String } * */ public void setPath(String value) { this.path = value; } /** * 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy