]> gerrit.simantics Code Review - simantics/interop.git/blob - org.simantics.xml.sax/src/org/w3/_2001/xmlschema/SimpleContent.java
XML Schema converter
[simantics/interop.git] / org.simantics.xml.sax / src / org / w3 / _2001 / xmlschema / SimpleContent.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.XmlRootElement;\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.w3.org/2001/XMLSchema}annotated">\r
26  *       &lt;choice>\r
27  *         &lt;element name="restriction" type="{http://www.w3.org/2001/XMLSchema}simpleRestrictionType"/>\r
28  *         &lt;element name="extension" type="{http://www.w3.org/2001/XMLSchema}simpleExtensionType"/>\r
29  *       &lt;/choice>\r
30  *       &lt;anyAttribute processContents='lax' namespace='##other'/>\r
31  *     &lt;/extension>\r
32  *   &lt;/complexContent>\r
33  * &lt;/complexType>\r
34  * </pre>\r
35  * \r
36  * \r
37  */\r
38 @XmlAccessorType(XmlAccessType.FIELD)\r
39 @XmlType(name = "", propOrder = {\r
40     "restriction",\r
41     "extension"\r
42 })\r
43 @XmlRootElement(name = "simpleContent")\r
44 public class SimpleContent\r
45     extends Annotated\r
46 {\r
47 \r
48     protected SimpleRestrictionType restriction;\r
49     protected SimpleExtensionType extension;\r
50 \r
51     /**\r
52      * Gets the value of the restriction property.\r
53      * \r
54      * @return\r
55      *     possible object is\r
56      *     {@link SimpleRestrictionType }\r
57      *     \r
58      */\r
59     public SimpleRestrictionType getRestriction() {\r
60         return restriction;\r
61     }\r
62 \r
63     /**\r
64      * Sets the value of the restriction property.\r
65      * \r
66      * @param value\r
67      *     allowed object is\r
68      *     {@link SimpleRestrictionType }\r
69      *     \r
70      */\r
71     public void setRestriction(SimpleRestrictionType value) {\r
72         this.restriction = value;\r
73     }\r
74 \r
75     /**\r
76      * Gets the value of the extension property.\r
77      * \r
78      * @return\r
79      *     possible object is\r
80      *     {@link SimpleExtensionType }\r
81      *     \r
82      */\r
83     public SimpleExtensionType getExtension() {\r
84         return extension;\r
85     }\r
86 \r
87     /**\r
88      * Sets the value of the extension property.\r
89      * \r
90      * @param value\r
91      *     allowed object is\r
92      *     {@link SimpleExtensionType }\r
93      *     \r
94      */\r
95     public void setExtension(SimpleExtensionType value) {\r
96         this.extension = value;\r
97     }\r
98 \r
99 }\r