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

ru.yandex.qatools.allure.data.ListFiles 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 list-files complex type. * *

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

 * <complexType name="list-files">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="files" type="{urn:data.allure.qatools.yandex.ru}files" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "list-files", propOrder = { "files" }) public class ListFiles { @XmlElementWrapper(name = "files") @XmlElement(name = "file") protected List files; public List getFiles() { if (files == null) { files = new ArrayList(); } return files; } public void setFiles(List files) { this.files = files; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy