]> gerrit.simantics Code Review - simantics/interop.git/blob - org.simantics.xml.sax/src/org/simantics/xml/sax/configuration/IDReference.java
Initial support for XML export (order of Elements is not kept)
[simantics/interop.git] / org.simantics.xml.sax / src / org / simantics / xml / sax / configuration / IDReference.java
1 //\r
2 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 \r
3 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> \r
4 // Any modifications to this file will be lost upon recompilation of the source schema. \r
5 // Generated on: 2017.01.24 at 12:54:40 PM EET \r
6 //\r
7 \r
8 \r
9 package org.simantics.xml.sax.configuration;\r
10 \r
11 import javax.xml.bind.annotation.XmlAccessType;\r
12 import javax.xml.bind.annotation.XmlAccessorType;\r
13 import javax.xml.bind.annotation.XmlElement;\r
14 import javax.xml.bind.annotation.XmlType;\r
15 \r
16 \r
17 /**\r
18  * <p>Java class for anonymous complex type.\r
19  * \r
20  * <p>The following schema fragment specifies the expected content contained within this class.\r
21  * \r
22  * <pre>\r
23  * &lt;complexType>\r
24  *   &lt;complexContent>\r
25  *     &lt;extension base="{http://www.simantics.org/xml/sax/configuration/}ConversionRule">\r
26  *       &lt;sequence>\r
27  *         &lt;choice>\r
28  *           &lt;element ref="{http://www.simantics.org/xml/sax/configuration/}Element"/>\r
29  *           &lt;element ref="{http://www.simantics.org/xml/sax/configuration/}ComplexType"/>\r
30  *         &lt;/choice>\r
31  *         &lt;element name="IDSource" type="{http://www.simantics.org/xml/sax/configuration/}Attribute"/>\r
32  *         &lt;element name="Reference" type="{http://www.simantics.org/xml/sax/configuration/}Attribute"/>\r
33  *       &lt;/sequence>\r
34  *     &lt;/extension>\r
35  *   &lt;/complexContent>\r
36  * &lt;/complexType>\r
37  * </pre>\r
38  * \r
39  * \r
40  */\r
41 @XmlAccessorType(XmlAccessType.FIELD)\r
42 @XmlType(name = "", propOrder = {\r
43     "element",\r
44     "complexType",\r
45     "idSource",\r
46     "reference"\r
47 })\r
48 public class IDReference\r
49     extends ConversionRule\r
50 {\r
51 \r
52     @XmlElement(name = "Element")\r
53     protected Element element;\r
54     @XmlElement(name = "ComplexType")\r
55     protected ComplexType complexType;\r
56     @XmlElement(name = "IDSource", required = true)\r
57     protected Attribute idSource;\r
58     @XmlElement(name = "Reference", required = true)\r
59     protected Attribute reference;\r
60 \r
61     /**\r
62      * Gets the value of the element property.\r
63      * \r
64      * @return\r
65      *     possible object is\r
66      *     {@link Element }\r
67      *     \r
68      */\r
69     public Element getElement() {\r
70         return element;\r
71     }\r
72 \r
73     /**\r
74      * Sets the value of the element property.\r
75      * \r
76      * @param value\r
77      *     allowed object is\r
78      *     {@link Element }\r
79      *     \r
80      */\r
81     public void setElement(Element value) {\r
82         this.element = value;\r
83     }\r
84 \r
85     /**\r
86      * Gets the value of the complexType property.\r
87      * \r
88      * @return\r
89      *     possible object is\r
90      *     {@link ComplexType }\r
91      *     \r
92      */\r
93     public ComplexType getComplexType() {\r
94         return complexType;\r
95     }\r
96 \r
97     /**\r
98      * Sets the value of the complexType property.\r
99      * \r
100      * @param value\r
101      *     allowed object is\r
102      *     {@link ComplexType }\r
103      *     \r
104      */\r
105     public void setComplexType(ComplexType value) {\r
106         this.complexType = value;\r
107     }\r
108 \r
109     /**\r
110      * Gets the value of the idSource property.\r
111      * \r
112      * @return\r
113      *     possible object is\r
114      *     {@link Attribute }\r
115      *     \r
116      */\r
117     public Attribute getIDSource() {\r
118         return idSource;\r
119     }\r
120 \r
121     /**\r
122      * Sets the value of the idSource property.\r
123      * \r
124      * @param value\r
125      *     allowed object is\r
126      *     {@link Attribute }\r
127      *     \r
128      */\r
129     public void setIDSource(Attribute value) {\r
130         this.idSource = value;\r
131     }\r
132 \r
133     /**\r
134      * Gets the value of the reference property.\r
135      * \r
136      * @return\r
137      *     possible object is\r
138      *     {@link Attribute }\r
139      *     \r
140      */\r
141     public Attribute getReference() {\r
142         return reference;\r
143     }\r
144 \r
145     /**\r
146      * Sets the value of the reference property.\r
147      * \r
148      * @param value\r
149      *     allowed object is\r
150      *     {@link Attribute }\r
151      *     \r
152      */\r
153     public void setReference(Attribute value) {\r
154         this.reference = value;\r
155     }\r
156 \r
157 }\r