1   //
2   // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
3   // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
4   // Any modifications to this file will be lost upon recompilation of the source schema. 
5   // Generated on: 2016.02.15 at 02:35:27 PM CET 
6   //
7   
8   
9   package eu.fbk.dkm.premon.premonitor.verbnet;
10  
11  import java.util.ArrayList;
12  import java.util.List;
13  import javax.xml.bind.annotation.XmlAccessType;
14  import javax.xml.bind.annotation.XmlAccessorType;
15  import javax.xml.bind.annotation.XmlElement;
16  import javax.xml.bind.annotation.XmlRootElement;
17  import javax.xml.bind.annotation.XmlType;
18  
19  
20  /**
21   * 
22   */
23  @XmlAccessorType(XmlAccessType.FIELD)
24  @XmlType(name = "", propOrder = {
25      "arg"
26  })
27  @XmlRootElement(name = "ARGS")
28  public class ARGS {
29  
30      @XmlElement(name = "ARG", required = true)
31      protected List<ARG> arg;
32  
33      /**
34       * Gets the value of the arg property.
35       * 
36       * <p>
37       * This accessor method returns a reference to the live list,
38       * not a snapshot. Therefore any modification you make to the
39       * returned list will be present inside the JAXB object.
40       * This is why there is not a <CODE>set</CODE> method for the arg property.
41       * 
42       * <p>
43       * For example, to add a new item, do as follows:
44       * <pre>
45       *    getARG().add(newItem);
46       * </pre>
47       * 
48       * 
49       * <p>
50       * Objects of the following type(s) are allowed in the list
51       * {@link ARG }
52       * 
53       * 
54       */
55      public List<ARG> getARG() {
56          if (arg == null) {
57              arg = new ArrayList<ARG>();
58          }
59          return this.arg;
60      }
61  
62  }