fr.sii.sonar.test.junit.domain.v4.Testsuites Maven / Gradle / Ivy
Show all versions of sonar-test-junit Show documentation
//
// 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.v4;
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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* 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 name="testsuite" maxOccurs="unbounded" minOccurs="0">
* <complexType>
* <complexContent>
* <extension base="{}testsuite">
* <attribute name="package" use="required" type="{http://www.w3.org/2001/XMLSchema}token" />
* <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
* </extension>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"testsuite"
})
@XmlRootElement(name = "testsuites")
public class Testsuites {
protected List testsuite;
/**
* 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 Testsuites.Testsuite }
*
*
*/
public List getTestsuite() {
if (testsuite == null) {
testsuite = new ArrayList();
}
return this.testsuite;
}
/**
* Classe Java pour anonymous complex type.
*
*
Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe.
*
*
* <complexType>
* <complexContent>
* <extension base="{}testsuite">
* <attribute name="package" use="required" type="{http://www.w3.org/2001/XMLSchema}token" />
* <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
public static class Testsuite
extends fr.sii.sonar.test.junit.domain.v4.Testsuite
{
@XmlAttribute(name = "package", required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "token")
protected String _package;
@XmlAttribute(name = "id", required = true)
protected int id;
/**
* 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;
}
/**
* Obtient la valeur de la propriété id.
*
*/
public int getId() {
return id;
}
/**
* Définit la valeur de la propriété id.
*
*/
public void setId(int value) {
this.id = value;
}
}
}