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

ch.powerunit.report.Testsuite Maven / Gradle / Ivy

There is a newer version: 0.5.0
Show newest version
//
// Ce fichier a été généré par l'implémentation de référence JavaTM Architecture for XML Binding (JAXB), v2.2.7 
// Voir http://java.sun.com/xml/jaxb 
// Toute modification apportée à ce fichier sera perdue lors de la recompilation du schéma source. 
// Généré le : 2014.10.15 à 07:50:53 PM CEST 
//


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;


/**
 * 

Classe Java pour anonymous complex type. * *

Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe. * *

 * <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>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "properties", "testcase", "systemOut", "systemErr" }) @XmlRootElement(name = "testsuite") public class Testsuite { protected Properties properties; protected List 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; /** * Obtient la valeur de la propriété properties. * * @return * possible object is * {@link Properties } * */ public Properties getProperties() { return properties; } /** * Définit la valeur de la propriété properties. * * @param value * allowed object is * {@link Properties } * */ public void setProperties(Properties value) { this.properties = value; } /** * Gets the value of the testcase 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 testcase property. * *

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

     *    getTestcase().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Testcase } * * */ public List getTestcase() { if (testcase == null) { testcase = new ArrayList(); } return this.testcase; } /** * Obtient la valeur de la propriété systemOut. * * @return * possible object is * {@link String } * */ public String getSystemOut() { return systemOut; } /** * Définit la valeur de la propriété systemOut. * * @param value * allowed object is * {@link String } * */ public void setSystemOut(String value) { this.systemOut = value; } /** * Obtient la valeur de la propriété systemErr. * * @return * possible object is * {@link String } * */ public String getSystemErr() { return systemErr; } /** * Définit la valeur de la propriété systemErr. * * @param value * allowed object is * {@link String } * */ public void setSystemErr(String value) { this.systemErr = value; } /** * Obtient la valeur de la propriété name. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Définit la valeur de la propriété name. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Obtient la valeur de la propriété tests. * */ public int getTests() { return tests; } /** * Définit la valeur de la propriété tests. * */ public void setTests(int value) { this.tests = value; } /** * Obtient la valeur de la propriété failures. * * @return * possible object is * {@link Integer } * */ public Integer getFailures() { return failures; } /** * Définit la valeur de la propriété failures. * * @param value * allowed object is * {@link Integer } * */ public void setFailures(Integer value) { this.failures = value; } /** * Obtient la valeur de la propriété errors. * * @return * possible object is * {@link Integer } * */ public Integer getErrors() { return errors; } /** * Définit la valeur de la propriété errors. * * @param value * allowed object is * {@link Integer } * */ public void setErrors(Integer value) { this.errors = value; } /** * Obtient la valeur de la propriété time. * * @return * possible object is * {@link Long } * */ public Long getTime() { return time; } /** * Définit la valeur de la propriété time. * * @param value * allowed object is * {@link Long } * */ public void setTime(Long value) { this.time = value; } /** * Obtient la valeur de la propriété disabled. * * @return * possible object is * {@link Integer } * */ public Integer getDisabled() { return disabled; } /** * Définit la valeur de la propriété disabled. * * @param value * allowed object is * {@link Integer } * */ public void setDisabled(Integer value) { this.disabled = value; } /** * Obtient la valeur de la propriété skipped. * * @return * possible object is * {@link Integer } * */ public Integer getSkipped() { return skipped; } /** * Définit la valeur de la propriété skipped. * * @param value * allowed object is * {@link Integer } * */ public void setSkipped(Integer value) { this.skipped = value; } /** * Obtient la valeur de la propriété timestamp. * * @return * possible object is * {@link String } * */ public String getTimestamp() { return timestamp; } /** * Définit la valeur de la propriété timestamp. * * @param value * allowed object is * {@link String } * */ public void setTimestamp(String value) { this.timestamp = value; } /** * Obtient la valeur de la propriété hostname. * * @return * possible object is * {@link String } * */ public String getHostname() { return hostname; } /** * Définit la valeur de la propriété hostname. * * @param value * allowed object is * {@link String } * */ public void setHostname(String value) { this.hostname = value; } /** * Obtient la valeur de la propriété id. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Définit la valeur de la propriété id. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * Obtient la valeur de la propriété package. * * @return * possible object is * {@link String } * */ public String getPackage() { return _package; } /** * Définit la valeur de la propriété package. * * @param value * allowed object is * {@link String } * */ public void setPackage(String value) { this._package = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy