]> gerrit.simantics Code Review - simantics/interop.git/blob - org.simantics.xml.sax/src/org/w3/_2001/xmlschema/Import.java
XML Schema converter
[simantics/interop.git] / org.simantics.xml.sax / src / org / w3 / _2001 / xmlschema / Import.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.XmlSchemaType;\r
16 import javax.xml.bind.annotation.XmlType;\r
17 \r
18 \r
19 /**\r
20  * <p>Java class for anonymous complex type.\r
21  * \r
22  * <p>The following schema fragment specifies the expected content contained within this class.\r
23  * \r
24  * <pre>\r
25  * &lt;complexType>\r
26  *   &lt;complexContent>\r
27  *     &lt;extension base="{http://www.w3.org/2001/XMLSchema}annotated">\r
28  *       &lt;attribute name="namespace" type="{http://www.w3.org/2001/XMLSchema}anyURI" />\r
29  *       &lt;attribute name="schemaLocation" type="{http://www.w3.org/2001/XMLSchema}anyURI" />\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 = "")\r
40 @XmlRootElement(name = "import")\r
41 public class Import\r
42     extends Annotated\r
43 {\r
44 \r
45     @XmlAttribute(name = "namespace")\r
46     @XmlSchemaType(name = "anyURI")\r
47     protected String namespace;\r
48     @XmlAttribute(name = "schemaLocation")\r
49     @XmlSchemaType(name = "anyURI")\r
50     protected String schemaLocation;\r
51 \r
52     /**\r
53      * Gets the value of the namespace property.\r
54      * \r
55      * @return\r
56      *     possible object is\r
57      *     {@link String }\r
58      *     \r
59      */\r
60     public String getNamespace() {\r
61         return namespace;\r
62     }\r
63 \r
64     /**\r
65      * Sets the value of the namespace property.\r
66      * \r
67      * @param value\r
68      *     allowed object is\r
69      *     {@link String }\r
70      *     \r
71      */\r
72     public void setNamespace(String value) {\r
73         this.namespace = value;\r
74     }\r
75 \r
76     /**\r
77      * Gets the value of the schemaLocation property.\r
78      * \r
79      * @return\r
80      *     possible object is\r
81      *     {@link String }\r
82      *     \r
83      */\r
84     public String getSchemaLocation() {\r
85         return schemaLocation;\r
86     }\r
87 \r
88     /**\r
89      * Sets the value of the schemaLocation property.\r
90      * \r
91      * @param value\r
92      *     allowed object is\r
93      *     {@link String }\r
94      *     \r
95      */\r
96     public void setSchemaLocation(String value) {\r
97         this.schemaLocation = value;\r
98     }\r
99 \r
100 }\r