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

io.qameta.allure.tree.TreeWidgetItem Maven / Gradle / Ivy

There is a newer version: 2.30.0
Show newest version

package io.qameta.allure.tree;

import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import io.qameta.allure.entity.Statistic;


/**
 * 

Java class for TreeWidgetItem complex type. * *

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

 * <complexType name="TreeWidgetItem">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="uid" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="statistic" type="{urn:entity.allure.qameta.io}Statistic"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TreeWidgetItem", propOrder = { "uid", "name", "statistic" }) public class TreeWidgetItem implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(required = true) protected String uid; @XmlElement(required = true) protected String name; @XmlElement(required = true) protected Statistic statistic; /** * Gets the value of the uid property. * * @return * possible object is * {@link String } * */ public String getUid() { return uid; } /** * Sets the value of the uid property. * * @param value * allowed object is * {@link String } * */ public void setUid(String value) { this.uid = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * 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; } public TreeWidgetItem withUid(String value) { setUid(value); return this; } public TreeWidgetItem withName(String value) { setName(value); return this; } public TreeWidgetItem withStatistic(Statistic value) { setStatistic(value); return this; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy