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 javax.xml.bind.annotation.XmlAccessType;
12  import javax.xml.bind.annotation.XmlAccessorType;
13  import javax.xml.bind.annotation.XmlElement;
14  import javax.xml.bind.annotation.XmlRootElement;
15  import javax.xml.bind.annotation.XmlType;
16  
17  
18  /**
19   * 
20   */
21  @XmlAccessorType(XmlAccessType.FIELD)
22  @XmlType(name = "", propOrder = {
23      "description",
24      "examples",
25      "syntax",
26      "semantics"
27  })
28  @XmlRootElement(name = "FRAME")
29  public class FRAME {
30  
31      @XmlElement(name = "DESCRIPTION", required = true)
32      protected DESCRIPTION description;
33      @XmlElement(name = "EXAMPLES", required = true)
34      protected EXAMPLES examples;
35      @XmlElement(name = "SYNTAX", required = true)
36      protected SYNTAX syntax;
37      @XmlElement(name = "SEMANTICS", required = true)
38      protected SEMANTICS semantics;
39  
40      /**
41       * Gets the value of the description property.
42       * 
43       * @return
44       *     possible object is
45       *     {@link DESCRIPTION }
46       *     
47       */
48      public DESCRIPTION getDESCRIPTION() {
49          return description;
50      }
51  
52      /**
53       * Sets the value of the description property.
54       * 
55       * @param value
56       *     allowed object is
57       *     {@link DESCRIPTION }
58       *     
59       */
60      public void setDESCRIPTION(DESCRIPTION value) {
61          this.description = value;
62      }
63  
64      /**
65       * Gets the value of the examples property.
66       * 
67       * @return
68       *     possible object is
69       *     {@link EXAMPLES }
70       *     
71       */
72      public EXAMPLES getEXAMPLES() {
73          return examples;
74      }
75  
76      /**
77       * Sets the value of the examples property.
78       * 
79       * @param value
80       *     allowed object is
81       *     {@link EXAMPLES }
82       *     
83       */
84      public void setEXAMPLES(EXAMPLES value) {
85          this.examples = value;
86      }
87  
88      /**
89       * Gets the value of the syntax property.
90       * 
91       * @return
92       *     possible object is
93       *     {@link SYNTAX }
94       *     
95       */
96      public SYNTAX getSYNTAX() {
97          return syntax;
98      }
99  
100     /**
101      * Sets the value of the syntax property.
102      * 
103      * @param value
104      *     allowed object is
105      *     {@link SYNTAX }
106      *     
107      */
108     public void setSYNTAX(SYNTAX value) {
109         this.syntax = value;
110     }
111 
112     /**
113      * Gets the value of the semantics property.
114      * 
115      * @return
116      *     possible object is
117      *     {@link SEMANTICS }
118      *     
119      */
120     public SEMANTICS getSEMANTICS() {
121         return semantics;
122     }
123 
124     /**
125      * Sets the value of the semantics property.
126      * 
127      * @param value
128      *     allowed object is
129      *     {@link SEMANTICS }
130      *     
131      */
132     public void setSEMANTICS(SEMANTICS value) {
133         this.semantics = value;
134     }
135 
136 }