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

ru.yandex.qatools.allure.data.Statistic Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.6 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2013.11.29 at 11:32:48 AM UTC 
//


package ru.yandex.qatools.allure.data;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for statistic complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="statistic">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="total" type="{http://www.w3.org/2001/XMLSchema}long" default="0" />
 *       <attribute name="passed" type="{http://www.w3.org/2001/XMLSchema}long" default="0" />
 *       <attribute name="skipped" type="{http://www.w3.org/2001/XMLSchema}long" default="0" />
 *       <attribute name="failed" type="{http://www.w3.org/2001/XMLSchema}long" default="0" />
 *       <attribute name="broken" type="{http://www.w3.org/2001/XMLSchema}long" default="0" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "statistic") public class Statistic { @XmlAttribute(name = "total") protected Long total; @XmlAttribute(name = "passed") protected Long passed; @XmlAttribute(name = "skipped") protected Long skipped; @XmlAttribute(name = "failed") protected Long failed; @XmlAttribute(name = "broken") protected Long broken; /** * Gets the value of the total property. * * @return * possible object is * {@link Long } * */ public long getTotal() { if (total == null) { return 0L; } else { return total; } } /** * Sets the value of the total property. * * @param value * allowed object is * {@link Long } * */ public void setTotal(Long value) { this.total = value; } /** * Gets the value of the passed property. * * @return * possible object is * {@link Long } * */ public long getPassed() { if (passed == null) { return 0L; } else { return passed; } } /** * Sets the value of the passed property. * * @param value * allowed object is * {@link Long } * */ public void setPassed(Long value) { this.passed = value; } /** * Gets the value of the skipped property. * * @return * possible object is * {@link Long } * */ public long getSkipped() { if (skipped == null) { return 0L; } else { return skipped; } } /** * Sets the value of the skipped property. * * @param value * allowed object is * {@link Long } * */ public void setSkipped(Long value) { this.skipped = value; } /** * Gets the value of the failed property. * * @return * possible object is * {@link Long } * */ public long getFailed() { if (failed == null) { return 0L; } else { return failed; } } /** * Sets the value of the failed property. * * @param value * allowed object is * {@link Long } * */ public void setFailed(Long value) { this.failed = value; } /** * Gets the value of the broken property. * * @return * possible object is * {@link Long } * */ public long getBroken() { if (broken == null) { return 0L; } else { return broken; } } /** * Sets the value of the broken property. * * @param value * allowed object is * {@link Long } * */ public void setBroken(Long value) { this.broken = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy