]> gerrit.simantics Code Review - simantics/interop.git/blob - org.simantics.xml.sax/src/org/w3/_2001/xmlschema/List.java
XML Schema converter
[simantics/interop.git] / org.simantics.xml.sax / src / org / w3 / _2001 / xmlschema / List.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 import javax.xml.namespace.QName;\r
17 \r
18 \r
19 /**\r
20  * \r
21  *           itemType attribute and simpleType child are mutually\r
22  *           exclusive, but one or other is required\r
23  *         \r
24  * \r
25  * <p>Java class for anonymous complex type.\r
26  * \r
27  * <p>The following schema fragment specifies the expected content contained within this class.\r
28  * \r
29  * <pre>\r
30  * &lt;complexType>\r
31  *   &lt;complexContent>\r
32  *     &lt;extension base="{http://www.w3.org/2001/XMLSchema}annotated">\r
33  *       &lt;sequence>\r
34  *         &lt;element name="simpleType" type="{http://www.w3.org/2001/XMLSchema}localSimpleType" minOccurs="0"/>\r
35  *       &lt;/sequence>\r
36  *       &lt;attribute name="itemType" type="{http://www.w3.org/2001/XMLSchema}QName" />\r
37  *       &lt;anyAttribute processContents='lax' namespace='##other'/>\r
38  *     &lt;/extension>\r
39  *   &lt;/complexContent>\r
40  * &lt;/complexType>\r
41  * </pre>\r
42  * \r
43  * \r
44  */\r
45 @XmlAccessorType(XmlAccessType.FIELD)\r
46 @XmlType(name = "", propOrder = {\r
47     "simpleType"\r
48 })\r
49 @XmlRootElement(name = "list")\r
50 public class List\r
51     extends Annotated\r
52 {\r
53 \r
54     protected LocalSimpleType simpleType;\r
55     @XmlAttribute(name = "itemType")\r
56     protected QName itemType;\r
57 \r
58     /**\r
59      * Gets the value of the simpleType property.\r
60      * \r
61      * @return\r
62      *     possible object is\r
63      *     {@link LocalSimpleType }\r
64      *     \r
65      */\r
66     public LocalSimpleType getSimpleType() {\r
67         return simpleType;\r
68     }\r
69 \r
70     /**\r
71      * Sets the value of the simpleType property.\r
72      * \r
73      * @param value\r
74      *     allowed object is\r
75      *     {@link LocalSimpleType }\r
76      *     \r
77      */\r
78     public void setSimpleType(LocalSimpleType value) {\r
79         this.simpleType = value;\r
80     }\r
81 \r
82     /**\r
83      * Gets the value of the itemType property.\r
84      * \r
85      * @return\r
86      *     possible object is\r
87      *     {@link QName }\r
88      *     \r
89      */\r
90     public QName getItemType() {\r
91         return itemType;\r
92     }\r
93 \r
94     /**\r
95      * Sets the value of the itemType property.\r
96      * \r
97      * @param value\r
98      *     allowed object is\r
99      *     {@link QName }\r
100      *     \r
101      */\r
102     public void setItemType(QName value) {\r
103         this.itemType = value;\r
104     }\r
105 \r
106 }\r