ru.yandex.qatools.allure.data.AllureTotal Maven / Gradle / Ivy
package ru.yandex.qatools.allure.data;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for allure-total complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="allure-total">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="statistic" type="{urn:data.allure.qatools.yandex.ru}statistic"/>
* <element name="time" type="{urn:data.allure.qatools.yandex.ru}time"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "allure-total", propOrder = {
"statistic",
"time"
})
public class AllureTotal {
@XmlElement(required = true)
protected Statistic statistic;
@XmlElement(required = true)
protected Time time;
/**
* Gets the value of the statistic property.
*
* @return
* possible object is
* {@link Statistic }
*
*/
public Statistic getStatistic() {
return statistic;
}
/**
* Sets the value of the statistic property.
*
* @param value
* allowed object is
* {@link Statistic }
*
*/
public void setStatistic(Statistic value) {
this.statistic = value;
}
/**
* Gets the value of the time property.
*
* @return
* possible object is
* {@link Time }
*
*/
public Time getTime() {
return time;
}
/**
* Sets the value of the time property.
*
* @param value
* allowed object is
* {@link Time }
*
*/
public void setTime(Time value) {
this.time = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy