]> gerrit.simantics Code Review - simantics/interop.git/blob - org.simantics.xml.sax/src/org/simantics/xml/sax/configuration/UnrecognizedChildElement.java
XML Schema converter
[simantics/interop.git] / org.simantics.xml.sax / src / org / simantics / xml / sax / configuration / UnrecognizedChildElement.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: 2015.11.25 at 04:57:27 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="JavaMethod" type="{http://www.w3.org/2001/XMLSchema}string"/>\r
32  *       &lt;/sequence>\r
33  *     &lt;/extension>\r
34  *   &lt;/complexContent>\r
35  * &lt;/complexType>\r
36  * </pre>\r
37  * \r
38  * \r
39  */\r
40 @XmlAccessorType(XmlAccessType.FIELD)\r
41 @XmlType(name = "", propOrder = {\r
42     "element",\r
43     "complexType",\r
44     "javaMethod"\r
45 })\r
46 public class UnrecognizedChildElement\r
47     extends ConversionRule\r
48 {\r
49 \r
50     @XmlElement(name = "Element")\r
51     protected Element element;\r
52     @XmlElement(name = "ComplexType")\r
53     protected ComplexType complexType;\r
54     @XmlElement(name = "JavaMethod", required = true)\r
55     protected String javaMethod;\r
56 \r
57     /**\r
58      * Gets the value of the element property.\r
59      * \r
60      * @return\r
61      *     possible object is\r
62      *     {@link Element }\r
63      *     \r
64      */\r
65     public Element getElement() {\r
66         return element;\r
67     }\r
68 \r
69     /**\r
70      * Sets the value of the element property.\r
71      * \r
72      * @param value\r
73      *     allowed object is\r
74      *     {@link Element }\r
75      *     \r
76      */\r
77     public void setElement(Element value) {\r
78         this.element = value;\r
79     }\r
80 \r
81     /**\r
82      * Gets the value of the complexType property.\r
83      * \r
84      * @return\r
85      *     possible object is\r
86      *     {@link ComplexType }\r
87      *     \r
88      */\r
89     public ComplexType getComplexType() {\r
90         return complexType;\r
91     }\r
92 \r
93     /**\r
94      * Sets the value of the complexType property.\r
95      * \r
96      * @param value\r
97      *     allowed object is\r
98      *     {@link ComplexType }\r
99      *     \r
100      */\r
101     public void setComplexType(ComplexType value) {\r
102         this.complexType = value;\r
103     }\r
104 \r
105     /**\r
106      * Gets the value of the javaMethod property.\r
107      * \r
108      * @return\r
109      *     possible object is\r
110      *     {@link String }\r
111      *     \r
112      */\r
113     public String getJavaMethod() {\r
114         return javaMethod;\r
115     }\r
116 \r
117     /**\r
118      * Sets the value of the javaMethod property.\r
119      * \r
120      * @param value\r
121      *     allowed object is\r
122      *     {@link String }\r
123      *     \r
124      */\r
125     public void setJavaMethod(String value) {\r
126         this.javaMethod = value;\r
127     }\r
128 \r
129 }\r