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;
010import javax.xml.bind.annotation.*;
011import java.util.List;
012
013
014/**
015 * <p>Java class for anonymous complex type.
016 *
017 * <p>The following schema fragment specifies the expected content contained within this class.
018 *
019 * <pre>
020 * &lt;complexType>
021 *   &lt;complexContent>
022 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
023 *       &lt;sequence>
024 *         &lt;element ref="{}attachment" maxOccurs="unbounded"/>
025 *       &lt;/sequence>
026 *     &lt;/restriction>
027 *   &lt;/complexContent>
028 * &lt;/complexType>
029 * </pre>
030 *
031 *
032 */
033@XmlAccessorType(XmlAccessType.FIELD)
034@XmlType(name = "", propOrder = {
035        "attachment"
036})
037@XmlRootElement(name = "attachments")
038public class Attachments {
039
040    @XmlElement(required = true)
041    protected List<Attachment> attachment;
042
043    /**
044     * Gets the value of the attachment attachment.
045     *
046     * <p>
047     * This accessor method returns a reference to the live list,
048     * not a snapshot. Therefore any modification you make to the
049     * returned list will be present inside the JAXB object.
050     * This is why there is not a <CODE>set</CODE> method for the attachment attachment.
051     *
052     * <p>
053     * For example, to add a new item, do as follows:
054     * <pre>
055     *    getattachment().add(newItem);
056     * </pre>
057     *
058     *
059     * <p>
060     * Objects of the following type(s) are allowed in the list
061     * {@link Attachment }
062     *
063     *
064     */
065    public List<Attachment> getAttachment() {
066        return attachment;
067    }
068
069}