]> gerrit.simantics Code Review - simantics/interop.git/blob - org.simantics.xml.sax/src/org/w3/_2001/xmlschema/Notation.java
XML Schema converter
[simantics/interop.git] / org.simantics.xml.sax / src / org / w3 / _2001 / xmlschema / Notation.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 import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;\r
18 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;\r
19 \r
20 \r
21 /**\r
22  * <p>Java class for anonymous complex type.\r
23  * \r
24  * <p>The following schema fragment specifies the expected content contained within this class.\r
25  * \r
26  * <pre>\r
27  * &lt;complexType>\r
28  *   &lt;complexContent>\r
29  *     &lt;extension base="{http://www.w3.org/2001/XMLSchema}annotated">\r
30  *       &lt;attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}NCName" />\r
31  *       &lt;attribute name="public" type="{http://www.w3.org/2001/XMLSchema}public" />\r
32  *       &lt;attribute name="system" type="{http://www.w3.org/2001/XMLSchema}anyURI" />\r
33  *       &lt;anyAttribute processContents='lax' namespace='##other'/>\r
34  *     &lt;/extension>\r
35  *   &lt;/complexContent>\r
36  * &lt;/complexType>\r
37  * </pre>\r
38  * \r
39  * \r
40  */\r
41 @XmlAccessorType(XmlAccessType.FIELD)\r
42 @XmlType(name = "")\r
43 @XmlRootElement(name = "notation")\r
44 public class Notation\r
45     extends Annotated\r
46 {\r
47 \r
48     @XmlAttribute(name = "name", required = true)\r
49     @XmlJavaTypeAdapter(CollapsedStringAdapter.class)\r
50     @XmlSchemaType(name = "NCName")\r
51     protected String name;\r
52     @XmlAttribute(name = "public")\r
53     @XmlJavaTypeAdapter(CollapsedStringAdapter.class)\r
54     @XmlSchemaType(name = "public")\r
55     protected String _public;\r
56     @XmlAttribute(name = "system")\r
57     @XmlSchemaType(name = "anyURI")\r
58     protected String system;\r
59 \r
60     /**\r
61      * Gets the value of the name property.\r
62      * \r
63      * @return\r
64      *     possible object is\r
65      *     {@link String }\r
66      *     \r
67      */\r
68     public String getName() {\r
69         return name;\r
70     }\r
71 \r
72     /**\r
73      * Sets the value of the name property.\r
74      * \r
75      * @param value\r
76      *     allowed object is\r
77      *     {@link String }\r
78      *     \r
79      */\r
80     public void setName(String value) {\r
81         this.name = value;\r
82     }\r
83 \r
84     /**\r
85      * Gets the value of the public property.\r
86      * \r
87      * @return\r
88      *     possible object is\r
89      *     {@link String }\r
90      *     \r
91      */\r
92     public String getPublic() {\r
93         return _public;\r
94     }\r
95 \r
96     /**\r
97      * Sets the value of the public property.\r
98      * \r
99      * @param value\r
100      *     allowed object is\r
101      *     {@link String }\r
102      *     \r
103      */\r
104     public void setPublic(String value) {\r
105         this._public = value;\r
106     }\r
107 \r
108     /**\r
109      * Gets the value of the system property.\r
110      * \r
111      * @return\r
112      *     possible object is\r
113      *     {@link String }\r
114      *     \r
115      */\r
116     public String getSystem() {\r
117         return system;\r
118     }\r
119 \r
120     /**\r
121      * Sets the value of the system property.\r
122      * \r
123      * @param value\r
124      *     allowed object is\r
125      *     {@link String }\r
126      *     \r
127      */\r
128     public void setSystem(String value) {\r
129         this.system = value;\r
130     }\r
131 \r
132 }\r