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.CollapsedStringAdapter;
21  import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
22  
23  
24  /**
25   * 
26   */
27  @XmlAccessorType(XmlAccessType.FIELD)
28  @XmlType(name = "", propOrder = {
29      "selrestrOrSELRESTRS"
30  })
31  @XmlRootElement(name = "SELRESTRS")
32  public class SELRESTRS {
33  
34      @XmlAttribute(name = "logic")
35      @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
36      protected String logic;
37      @XmlElements({
38          @XmlElement(name = "SELRESTR", type = SELRESTR.class),
39          @XmlElement(name = "SELRESTRS", type = SELRESTRS.class)
40      })
41      protected List<Object> selrestrOrSELRESTRS;
42  
43      /**
44       * Gets the value of the logic property.
45       * 
46       * @return
47       *     possible object is
48       *     {@link String }
49       *     
50       */
51      public String getLogic() {
52          return logic;
53      }
54  
55      /**
56       * Sets the value of the logic property.
57       * 
58       * @param value
59       *     allowed object is
60       *     {@link String }
61       *     
62       */
63      public void setLogic(String value) {
64          this.logic = value;
65      }
66  
67      /**
68       * Gets the value of the selrestrOrSELRESTRS 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 selrestrOrSELRESTRS property.
75       * 
76       * <p>
77       * For example, to add a new item, do as follows:
78       * <pre>
79       *    getSELRESTROrSELRESTRS().add(newItem);
80       * </pre>
81       * 
82       * 
83       * <p>
84       * Objects of the following type(s) are allowed in the list
85       * {@link SELRESTR }
86       * {@link SELRESTRS }
87       * 
88       * 
89       */
90      public List<Object> getSELRESTROrSELRESTRS() {
91          if (selrestrOrSELRESTRS == null) {
92              selrestrOrSELRESTRS = new ArrayList<Object>();
93          }
94          return this.selrestrOrSELRESTRS;
95      }
96  
97  }