]> gerrit.simantics Code Review - simantics/interop.git/blob - org.simantics.xml.sax/src/org/simantics/xml/sax/configuration/Attribute.java
Initial support for XML export (order of Elements is not kept)
[simantics/interop.git] / org.simantics.xml.sax / src / org / simantics / xml / sax / configuration / Attribute.java
1 //\r
2 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 \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: 2017.01.24 at 12:54:40 PM EET \r
6 //\r
7 \r
8 \r
9 package org.simantics.xml.sax.configuration;\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.XmlType;\r
15 \r
16 \r
17 /**\r
18  * <p>Java class for Attribute 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 name="Attribute">\r
24  *   &lt;complexContent>\r
25  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">\r
26  *       &lt;attribute name="Type" type="{http://www.w3.org/2001/XMLSchema}string" />\r
27  *       &lt;attribute name="Name" type="{http://www.w3.org/2001/XMLSchema}string" />\r
28  *     &lt;/restriction>\r
29  *   &lt;/complexContent>\r
30  * &lt;/complexType>\r
31  * </pre>\r
32  * \r
33  * \r
34  */\r
35 @XmlAccessorType(XmlAccessType.FIELD)\r
36 @XmlType(name = "Attribute")\r
37 public class Attribute {\r
38 \r
39     @XmlAttribute(name = "Type")\r
40     protected String type;\r
41     @XmlAttribute(name = "Name")\r
42     protected String name;\r
43 \r
44     /**\r
45      * Gets the value of the type property.\r
46      * \r
47      * @return\r
48      *     possible object is\r
49      *     {@link String }\r
50      *     \r
51      */\r
52     public String getType() {\r
53         return type;\r
54     }\r
55 \r
56     /**\r
57      * Sets the value of the type property.\r
58      * \r
59      * @param value\r
60      *     allowed object is\r
61      *     {@link String }\r
62      *     \r
63      */\r
64     public void setType(String value) {\r
65         this.type = value;\r
66     }\r
67 \r
68     /**\r
69      * Gets the value of the name property.\r
70      * \r
71      * @return\r
72      *     possible object is\r
73      *     {@link String }\r
74      *     \r
75      */\r
76     public String getName() {\r
77         return name;\r
78     }\r
79 \r
80     /**\r
81      * Sets the value of the name property.\r
82      * \r
83      * @param value\r
84      *     allowed object is\r
85      *     {@link String }\r
86      *     \r
87      */\r
88     public void setName(String value) {\r
89         this.name = value;\r
90     }\r
91 \r
92 }\r