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

org.evosuite.xsd.Generation 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: 2018.04.05 at 08:45:45 PM CEST 
//


package org.evosuite.xsd;

import java.math.BigInteger;
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.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for Generation complex type. * *

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

 * <complexType name="Generation">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger"/>
 *         <element name="failed" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="modified" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="timeBudgetInSeconds" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger"/>
 *         <element name="memoryInMB" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger"/>
 *         <element name="std_err_CLIENT" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="std_out_CLIENT" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="std_err_MASTER" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="std_out_MASTER" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <sequence>
 *           <element name="failure" type="{}Failure" maxOccurs="unbounded" minOccurs="0"/>
 *         </sequence>
 *         <element name="suite" type="{}TestSuite" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Generation", propOrder = { "id", "failed", "modified", "timeBudgetInSeconds", "memoryInMB", "stdErrCLIENT", "stdOutCLIENT", "stdErrMASTER", "stdOutMASTER", "failure", "suite" }) public class Generation { @XmlElement(required = true) @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger id; protected boolean failed; protected boolean modified; @XmlElement(required = true) @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger timeBudgetInSeconds; @XmlElement(required = true) @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger memoryInMB; @XmlElement(name = "std_err_CLIENT") protected String stdErrCLIENT; @XmlElement(name = "std_out_CLIENT") protected String stdOutCLIENT; @XmlElement(name = "std_err_MASTER") protected String stdErrMASTER; @XmlElement(name = "std_out_MASTER") protected String stdOutMASTER; protected List failure; protected TestSuite suite; /** * Gets the value of the id property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link BigInteger } * */ public void setId(BigInteger value) { this.id = value; } /** * Gets the value of the failed property. * */ public boolean isFailed() { return failed; } /** * Sets the value of the failed property. * */ public void setFailed(boolean value) { this.failed = value; } /** * Gets the value of the modified property. * */ public boolean isModified() { return modified; } /** * Sets the value of the modified property. * */ public void setModified(boolean value) { this.modified = value; } /** * Gets the value of the timeBudgetInSeconds property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getTimeBudgetInSeconds() { return timeBudgetInSeconds; } /** * Sets the value of the timeBudgetInSeconds property. * * @param value * allowed object is * {@link BigInteger } * */ public void setTimeBudgetInSeconds(BigInteger value) { this.timeBudgetInSeconds = value; } /** * Gets the value of the memoryInMB property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getMemoryInMB() { return memoryInMB; } /** * Sets the value of the memoryInMB property. * * @param value * allowed object is * {@link BigInteger } * */ public void setMemoryInMB(BigInteger value) { this.memoryInMB = value; } /** * Gets the value of the stdErrCLIENT property. * * @return * possible object is * {@link String } * */ public String getStdErrCLIENT() { return stdErrCLIENT; } /** * Sets the value of the stdErrCLIENT property. * * @param value * allowed object is * {@link String } * */ public void setStdErrCLIENT(String value) { this.stdErrCLIENT = value; } /** * Gets the value of the stdOutCLIENT property. * * @return * possible object is * {@link String } * */ public String getStdOutCLIENT() { return stdOutCLIENT; } /** * Sets the value of the stdOutCLIENT property. * * @param value * allowed object is * {@link String } * */ public void setStdOutCLIENT(String value) { this.stdOutCLIENT = value; } /** * Gets the value of the stdErrMASTER property. * * @return * possible object is * {@link String } * */ public String getStdErrMASTER() { return stdErrMASTER; } /** * Sets the value of the stdErrMASTER property. * * @param value * allowed object is * {@link String } * */ public void setStdErrMASTER(String value) { this.stdErrMASTER = value; } /** * Gets the value of the stdOutMASTER property. * * @return * possible object is * {@link String } * */ public String getStdOutMASTER() { return stdOutMASTER; } /** * Sets the value of the stdOutMASTER property. * * @param value * allowed object is * {@link String } * */ public void setStdOutMASTER(String value) { this.stdOutMASTER = value; } /** * Gets the value of the failure 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 failure property. * *

* For example, to add a new item, do as follows: *

     *    getFailure().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Failure } * * */ public List getFailure() { if (failure == null) { failure = new ArrayList(); } return this.failure; } /** * Gets the value of the suite property. * * @return * possible object is * {@link TestSuite } * */ public TestSuite getSuite() { return suite; } /** * Sets the value of the suite property. * * @param value * allowed object is * {@link TestSuite } * */ public void setSuite(TestSuite value) { this.suite = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy