ru.yandex.qatools.allure.data.AllureBehavior Maven / Gradle / Ivy
package ru.yandex.qatools.allure.data;
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.XmlElementWrapper;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for allure-behavior complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="allure-behavior">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="features" type="{urn:data.allure.qatools.yandex.ru}allure-features" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "allure-behavior", propOrder = {
"features"
})
public class AllureBehavior {
@XmlElementWrapper(name = "features")
@XmlElement(name = "feature")
protected List features;
public List getFeatures() {
if (features == null) {
features = new ArrayList();
}
return features;
}
public void setFeatures(List features) {
this.features = features;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy