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

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

There is a newer version: 1.5.4
Show newest version
//
// 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 summary complex type. * *

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

 * <complexType name="summary">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="attachments" type="{http://www.w3.org/2001/XMLSchema}long" default="0" />
 *       <attribute name="steps" type="{http://www.w3.org/2001/XMLSchema}long" default="0" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "summary") public class Summary { @XmlAttribute(name = "attachments") protected Long attachments; @XmlAttribute(name = "steps") protected Long steps; /** * Gets the value of the attachments property. * * @return * possible object is * {@link Long } * */ public long getAttachments() { if (attachments == null) { return 0L; } else { return attachments; } } /** * Sets the value of the attachments property. * * @param value * allowed object is * {@link Long } * */ public void setAttachments(Long value) { this.attachments = value; } /** * Gets the value of the steps property. * * @return * possible object is * {@link Long } * */ public long getSteps() { if (steps == null) { return 0L; } else { return steps; } } /** * Sets the value of the steps property. * * @param value * allowed object is * {@link Long } * */ public void setSteps(Long value) { this.steps = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy