001//
002// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 
003// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
004// Any modifications to this file will be lost upon recompilation of the source schema. 
005// Generated on: 2017.04.15 at 10:50:52 PM IST 
006//
007
008
009package com.thed.zblast.parser.jaxb.junit;
010
011import javax.xml.bind.annotation.*;
012import java.util.List;
013
014
015/**
016 * <p>Java class for anonymous complex type.
017 *
018 * <p>The following schema fragment specifies the expected content contained within this class.
019 *
020 * <pre>
021 * &lt;complexType>
022 *   &lt;complexContent>
023 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
024 *       &lt;sequence>
025 *         &lt;element ref="{}requirement" maxOccurs="unbounded"/>
026 *       &lt;/sequence>
027 *     &lt;/restriction>
028 *   &lt;/complexContent>
029 * &lt;/complexType>
030 * </pre>
031 *
032 *
033 */
034@XmlAccessorType(XmlAccessType.FIELD)
035@XmlType(name = "", propOrder = {
036        "requirement"
037})
038@XmlRootElement(name = "requirements")
039public class Requirements {
040
041    @XmlElement(required = true)
042    protected List<Requirement> requirement;
043
044    /**
045     * Gets the value of the attachment attachment.
046     *
047     * <p>
048     * This accessor method returns a reference to the live list,
049     * not a snapshot. Therefore any modification you make to the
050     * returned list will be present inside the JAXB object.
051     * This is why there is not a <CODE>set</CODE> method for the attachment attachment.
052     *
053     * <p>
054     * For example, to add a new item, do as follows:
055     * <pre>
056     *    getRequirement().add(newItem);
057     * </pre>
058     *
059     *
060     * <p>
061     * Objects of the following type(s) are allowed in the list
062     * {@link com.thed.zblast.parser.jaxb.junit.Attachment }
063     *
064     *
065     */
066    public List<Requirement> getRequirement() {
067        return requirement;
068    }
069
070    public void setRequirement(List<Requirement> requirement) {
071        this.requirement = requirement;
072    }
073}