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.12 at 10:43:37 PM CET 
6   //
7   
8   
9   package eu.fbk.dkm.pikes.resources.util.fnlu;
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.XmlType;
17  
18  
19  /**
20   * <p>Java class for valencesType complex type.
21   * 
22   * <p>The following schema fragment specifies the expected content contained within this class.
23   * 
24   * <pre>
25   * &lt;complexType name="valencesType">
26   *   &lt;complexContent>
27   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
28   *       &lt;sequence>
29   *         &lt;element name="governor" type="{http://framenet.icsi.berkeley.edu}governorType" maxOccurs="unbounded" minOccurs="0"/>
30   *         &lt;element name="FERealization" type="{http://framenet.icsi.berkeley.edu}FERealizationType" maxOccurs="unbounded" minOccurs="0"/>
31   *         &lt;element name="FEGroupRealization" type="{http://framenet.icsi.berkeley.edu}FEGroupRealizationType" maxOccurs="unbounded" minOccurs="0"/>
32   *       &lt;/sequence>
33   *     &lt;/restriction>
34   *   &lt;/complexContent>
35   * &lt;/complexType>
36   * </pre>
37   * 
38   * 
39   */
40  @XmlAccessorType(XmlAccessType.FIELD)
41  @XmlType(name = "valencesType", propOrder = {
42      "governor",
43      "feRealization",
44      "feGroupRealization"
45  })
46  public class ValencesType {
47  
48      protected List<GovernorType> governor;
49      @XmlElement(name = "FERealization")
50      protected List<FERealizationType> feRealization;
51      @XmlElement(name = "FEGroupRealization")
52      protected List<FEGroupRealizationType> feGroupRealization;
53  
54      /**
55       * Gets the value of the governor property.
56       * 
57       * <p>
58       * This accessor method returns a reference to the live list,
59       * not a snapshot. Therefore any modification you make to the
60       * returned list will be present inside the JAXB object.
61       * This is why there is not a <CODE>set</CODE> method for the governor property.
62       * 
63       * <p>
64       * For example, to add a new item, do as follows:
65       * <pre>
66       *    getGovernor().add(newItem);
67       * </pre>
68       * 
69       * 
70       * <p>
71       * Objects of the following type(s) are allowed in the list
72       * {@link GovernorType }
73       * 
74       * 
75       */
76      public List<GovernorType> getGovernor() {
77          if (governor == null) {
78              governor = new ArrayList<GovernorType>();
79          }
80          return this.governor;
81      }
82  
83      /**
84       * Gets the value of the feRealization property.
85       * 
86       * <p>
87       * This accessor method returns a reference to the live list,
88       * not a snapshot. Therefore any modification you make to the
89       * returned list will be present inside the JAXB object.
90       * This is why there is not a <CODE>set</CODE> method for the feRealization property.
91       * 
92       * <p>
93       * For example, to add a new item, do as follows:
94       * <pre>
95       *    getFERealization().add(newItem);
96       * </pre>
97       * 
98       * 
99       * <p>
100      * Objects of the following type(s) are allowed in the list
101      * {@link FERealizationType }
102      * 
103      * 
104      */
105     public List<FERealizationType> getFERealization() {
106         if (feRealization == null) {
107             feRealization = new ArrayList<FERealizationType>();
108         }
109         return this.feRealization;
110     }
111 
112     /**
113      * Gets the value of the feGroupRealization property.
114      * 
115      * <p>
116      * This accessor method returns a reference to the live list,
117      * not a snapshot. Therefore any modification you make to the
118      * returned list will be present inside the JAXB object.
119      * This is why there is not a <CODE>set</CODE> method for the feGroupRealization property.
120      * 
121      * <p>
122      * For example, to add a new item, do as follows:
123      * <pre>
124      *    getFEGroupRealization().add(newItem);
125      * </pre>
126      * 
127      * 
128      * <p>
129      * Objects of the following type(s) are allowed in the list
130      * {@link FEGroupRealizationType }
131      * 
132      * 
133      */
134     public List<FEGroupRealizationType> getFEGroupRealization() {
135         if (feGroupRealization == null) {
136             feGroupRealization = new ArrayList<FEGroupRealizationType>();
137         }
138         return this.feGroupRealization;
139     }
140 
141 }