org.evosuite.xsd.Failure Maven / Gradle / Ivy
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2019.11.06 at 02:12:54 PM CET
//
package org.evosuite.xsd;
import java.math.BigInteger;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for Failure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Failure">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="lineInTest" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger"/>
* <element name="thrownExceptionClassName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="failureSeverity" type="{}FailureSeverity"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Failure", propOrder = {
"lineInTest",
"thrownExceptionClassName",
"failureSeverity"
})
public class Failure {
@XmlElement(required = true)
@XmlSchemaType(name = "nonNegativeInteger")
protected BigInteger lineInTest;
@XmlElement(required = true)
protected String thrownExceptionClassName;
@XmlElement(required = true)
protected FailureSeverity failureSeverity;
/**
* Gets the value of the lineInTest property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getLineInTest() {
return lineInTest;
}
/**
* Sets the value of the lineInTest property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setLineInTest(BigInteger value) {
this.lineInTest = value;
}
/**
* Gets the value of the thrownExceptionClassName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getThrownExceptionClassName() {
return thrownExceptionClassName;
}
/**
* Sets the value of the thrownExceptionClassName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setThrownExceptionClassName(String value) {
this.thrownExceptionClassName = value;
}
/**
* Gets the value of the failureSeverity property.
*
* @return
* possible object is
* {@link FailureSeverity }
*
*/
public FailureSeverity getFailureSeverity() {
return failureSeverity;
}
/**
* Sets the value of the failureSeverity property.
*
* @param value
* allowed object is
* {@link FailureSeverity }
*
*/
public void setFailureSeverity(FailureSeverity value) {
this.failureSeverity = value;
}
}