de.dagere.kopeme.generated.Kopemedata Maven / Gradle / Ivy
Show all versions of kopeme-core Show documentation
//
// Diese Datei wurde mit der Eclipse Implementation of JAXB, v2.3.7 generiert
// Siehe https://eclipse-ee4j.github.io/jaxb-ri
// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren.
// Generiert: 2024.12.22 um 12:44:41 PM CET
//
package de.dagere.kopeme.generated;
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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* Java-Klasse für anonymous complex type.
*
*
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="configurations">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="configuration" type="{}configType" maxOccurs="unbounded"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* <element name="testcases">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="testcase" type="{}testcaseType" maxOccurs="unbounded"/>
* </sequence>
* <attribute name="class" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"configurations",
"testcases"
})
@XmlRootElement(name = "kopemedata")
public class Kopemedata {
@XmlElement(required = true)
protected Kopemedata.Configurations configurations;
@XmlElement(required = true)
protected Kopemedata.Testcases testcases;
/**
* Ruft den Wert der configurations-Eigenschaft ab.
*
* @return
* possible object is
* {@link Kopemedata.Configurations }
*
*/
public Kopemedata.Configurations getConfigurations() {
return configurations;
}
/**
* Legt den Wert der configurations-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Kopemedata.Configurations }
*
*/
public void setConfigurations(Kopemedata.Configurations value) {
this.configurations = value;
}
/**
* Ruft den Wert der testcases-Eigenschaft ab.
*
* @return
* possible object is
* {@link Kopemedata.Testcases }
*
*/
public Kopemedata.Testcases getTestcases() {
return testcases;
}
/**
* Legt den Wert der testcases-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Kopemedata.Testcases }
*
*/
public void setTestcases(Kopemedata.Testcases value) {
this.testcases = value;
}
/**
* Java-Klasse für anonymous complex type.
*
*
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="configuration" type="{}configType" maxOccurs="unbounded"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"configuration"
})
public static class Configurations {
@XmlElement(required = true)
protected List configuration;
/**
* Gets the value of the configuration 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 configuration property.
*
*
* For example, to add a new item, do as follows:
*
* getConfiguration().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ConfigType }
*
*
*/
public List getConfiguration() {
if (configuration == null) {
configuration = new ArrayList();
}
return this.configuration;
}
}
/**
* Java-Klasse für anonymous complex type.
*
*
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="testcase" type="{}testcaseType" maxOccurs="unbounded"/>
* </sequence>
* <attribute name="class" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"testcase"
})
public static class Testcases {
@XmlElement(required = true)
protected List testcase;
@XmlAttribute(name = "class")
@XmlSchemaType(name = "anySimpleType")
protected String clazz;
/**
* 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 TestcaseType }
*
*
*/
public List getTestcase() {
if (testcase == null) {
testcase = new ArrayList();
}
return this.testcase;
}
/**
* Ruft den Wert der clazz-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getClazz() {
return clazz;
}
/**
* Legt den Wert der clazz-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setClazz(String value) {
this.clazz = value;
}
}
}