]> gerrit.simantics Code Review - simantics/interop.git/blob - org.simantics.xml.sax/src/org/w3/_2001/xmlschema/ComplexContent.java
XML Schema converter
[simantics/interop.git] / org.simantics.xml.sax / src / org / w3 / _2001 / xmlschema / ComplexContent.java
1 //\r
2 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 \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.06.17 at 02:58:58 PM EEST \r
6 //\r
7 \r
8 \r
9 package org.w3._2001.xmlschema;\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.XmlAttribute;\r
14 import javax.xml.bind.annotation.XmlRootElement;\r
15 import javax.xml.bind.annotation.XmlType;\r
16 \r
17 \r
18 /**\r
19  * <p>Java class for anonymous complex type.\r
20  * \r
21  * <p>The following schema fragment specifies the expected content contained within this class.\r
22  * \r
23  * <pre>\r
24  * &lt;complexType>\r
25  *   &lt;complexContent>\r
26  *     &lt;extension base="{http://www.w3.org/2001/XMLSchema}annotated">\r
27  *       &lt;choice>\r
28  *         &lt;element name="restriction" type="{http://www.w3.org/2001/XMLSchema}complexRestrictionType"/>\r
29  *         &lt;element name="extension" type="{http://www.w3.org/2001/XMLSchema}extensionType"/>\r
30  *       &lt;/choice>\r
31  *       &lt;attribute name="mixed" type="{http://www.w3.org/2001/XMLSchema}boolean" />\r
32  *       &lt;anyAttribute processContents='lax' namespace='##other'/>\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     "restriction",\r
43     "extension"\r
44 })\r
45 @XmlRootElement(name = "complexContent")\r
46 public class ComplexContent\r
47     extends Annotated\r
48 {\r
49 \r
50     protected ComplexRestrictionType restriction;\r
51     protected ExtensionType extension;\r
52     @XmlAttribute(name = "mixed")\r
53     protected Boolean mixed;\r
54 \r
55     /**\r
56      * Gets the value of the restriction property.\r
57      * \r
58      * @return\r
59      *     possible object is\r
60      *     {@link ComplexRestrictionType }\r
61      *     \r
62      */\r
63     public ComplexRestrictionType getRestriction() {\r
64         return restriction;\r
65     }\r
66 \r
67     /**\r
68      * Sets the value of the restriction property.\r
69      * \r
70      * @param value\r
71      *     allowed object is\r
72      *     {@link ComplexRestrictionType }\r
73      *     \r
74      */\r
75     public void setRestriction(ComplexRestrictionType value) {\r
76         this.restriction = value;\r
77     }\r
78 \r
79     /**\r
80      * Gets the value of the extension property.\r
81      * \r
82      * @return\r
83      *     possible object is\r
84      *     {@link ExtensionType }\r
85      *     \r
86      */\r
87     public ExtensionType getExtension() {\r
88         return extension;\r
89     }\r
90 \r
91     /**\r
92      * Sets the value of the extension property.\r
93      * \r
94      * @param value\r
95      *     allowed object is\r
96      *     {@link ExtensionType }\r
97      *     \r
98      */\r
99     public void setExtension(ExtensionType value) {\r
100         this.extension = value;\r
101     }\r
102 \r
103     /**\r
104      * Gets the value of the mixed property.\r
105      * \r
106      * @return\r
107      *     possible object is\r
108      *     {@link Boolean }\r
109      *     \r
110      */\r
111     public Boolean isMixed() {\r
112         return mixed;\r
113     }\r
114 \r
115     /**\r
116      * Sets the value of the mixed property.\r
117      * \r
118      * @param value\r
119      *     allowed object is\r
120      *     {@link Boolean }\r
121      *     \r
122      */\r
123     public void setMixed(Boolean value) {\r
124         this.mixed = value;\r
125     }\r
126 \r
127 }\r