]> gerrit.simantics Code Review - simantics/interop.git/blob - org.simantics.xml.sax/src/org/simantics/xml/sax/configuration/Element.java
00bf583b124923b60fd6428527b5fca120aab115
[simantics/interop.git] / org.simantics.xml.sax / src / org / simantics / xml / sax / configuration / Element.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: 2015.11.25 at 04:57:27 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 Element 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="Element">\r
24  *   &lt;complexContent>\r
25  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">\r
26  *       &lt;attribute name="Name" type="{http://www.w3.org/2001/XMLSchema}string" />\r
27  *     &lt;/restriction>\r
28  *   &lt;/complexContent>\r
29  * &lt;/complexType>\r
30  * </pre>\r
31  * \r
32  * \r
33  */\r
34 @XmlAccessorType(XmlAccessType.FIELD)\r
35 @XmlType(name = "Element")\r
36 public class Element {\r
37 \r
38     @XmlAttribute(name = "Name")\r
39     protected String name;\r
40 \r
41     /**\r
42      * Gets the value of the name property.\r
43      * \r
44      * @return\r
45      *     possible object is\r
46      *     {@link String }\r
47      *     \r
48      */\r
49     public String getName() {\r
50         return name;\r
51     }\r
52 \r
53     /**\r
54      * Sets the value of the name property.\r
55      * \r
56      * @param value\r
57      *     allowed object is\r
58      *     {@link String }\r
59      *     \r
60      */\r
61     public void setName(String value) {\r
62         this.name = value;\r
63     }\r
64 \r
65 }\r