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: 2015.11.13 at 04:07:35 PM CET 
6   //
7   
8   
9   package eu.fbk.dkm.pikes.resources.util.semlink.vnfnroles;
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.XmlAttribute;
16  import javax.xml.bind.annotation.XmlElement;
17  import javax.xml.bind.annotation.XmlRootElement;
18  import javax.xml.bind.annotation.XmlType;
19  import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
20  import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
21  
22  
23  /**
24   * 
25   */
26  @XmlAccessorType(XmlAccessType.FIELD)
27  @XmlType(name = "", propOrder = {
28      "vncls"
29  })
30  @XmlRootElement(name = "verbnetRoles-framenetFEs_RoleMappingData")
31  public class SemLinkRolesRoot {
32  
33      @XmlAttribute(name = "date")
34      @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
35      protected String date;
36      @XmlElement(required = true)
37      protected List<Vncls> vncls;
38  
39      /**
40       * Gets the value of the date property.
41       * 
42       * @return
43       *     possible object is
44       *     {@link String }
45       *     
46       */
47      public String getDate() {
48          return date;
49      }
50  
51      /**
52       * Sets the value of the date property.
53       * 
54       * @param value
55       *     allowed object is
56       *     {@link String }
57       *     
58       */
59      public void setDate(String value) {
60          this.date = value;
61      }
62  
63      /**
64       * Gets the value of the vncls property.
65       * 
66       * <p>
67       * This accessor method returns a reference to the live list,
68       * not a snapshot. Therefore any modification you make to the
69       * returned list will be present inside the JAXB object.
70       * This is why there is not a <CODE>set</CODE> method for the vncls property.
71       * 
72       * <p>
73       * For example, to add a new item, do as follows:
74       * <pre>
75       *    getVncls().add(newItem);
76       * </pre>
77       * 
78       * 
79       * <p>
80       * Objects of the following type(s) are allowed in the list
81       * {@link Vncls }
82       * 
83       * 
84       */
85      public List<Vncls> getVncls() {
86          if (vncls == null) {
87              vncls = new ArrayList<Vncls>();
88          }
89          return this.vncls;
90      }
91  
92  }