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

fr.sii.sonar.test.junit.domain.v6.Testsuites Maven / Gradle / Ivy

There is a newer version: 2.1.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 : 2016.05.09 à 12:07:13 PM CEST 
//


package fr.sii.sonar.test.junit.domain.v6;

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.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="{}testsuite" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="time" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="tests" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="failures" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="disabled" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="errors" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "testsuite" }) @XmlRootElement(name = "testsuites") public class Testsuites { protected List testsuite; @XmlAttribute(name = "name") protected String name; @XmlAttribute(name = "time") protected String time; @XmlAttribute(name = "tests") protected String tests; @XmlAttribute(name = "failures") protected String failures; @XmlAttribute(name = "disabled") protected String disabled; @XmlAttribute(name = "errors") protected String errors; /** * Gets the value of the testsuite 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 testsuite property. * *

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

     *    getTestsuite().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Testsuite } * * */ public List getTestsuite() { if (testsuite == null) { testsuite = new ArrayList(); } return this.testsuite; } /** * 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é time. * * @return * possible object is * {@link String } * */ public String getTime() { return time; } /** * Définit la valeur de la propriété time. * * @param value * allowed object is * {@link String } * */ public void setTime(String value) { this.time = value; } /** * Obtient la valeur de la propriété tests. * * @return * possible object is * {@link String } * */ public String getTests() { return tests; } /** * Définit la valeur de la propriété tests. * * @param value * allowed object is * {@link String } * */ public void setTests(String value) { this.tests = value; } /** * Obtient la valeur de la propriété failures. * * @return * possible object is * {@link String } * */ public String getFailures() { return failures; } /** * Définit la valeur de la propriété failures. * * @param value * allowed object is * {@link String } * */ public void setFailures(String value) { this.failures = value; } /** * Obtient la valeur de la propriété disabled. * * @return * possible object is * {@link String } * */ public String getDisabled() { return disabled; } /** * Définit la valeur de la propriété disabled. * * @param value * allowed object is * {@link String } * */ public void setDisabled(String value) { this.disabled = value; } /** * Obtient la valeur de la propriété errors. * * @return * possible object is * {@link String } * */ public String getErrors() { return errors; } /** * Définit la valeur de la propriété errors. * * @param value * allowed object is * {@link String } * */ public void setErrors(String value) { this.errors = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy