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