1
2
3
4
5
6
7
8
9 package org.xmlhammer.model.project;
10
11 import javax.xml.bind.annotation.XmlAccessType;
12 import javax.xml.bind.annotation.XmlAccessorType;
13 import javax.xml.bind.annotation.XmlAttribute;
14 import javax.xml.bind.annotation.XmlRootElement;
15 import javax.xml.bind.annotation.XmlType;
16
17
18 /***
19 * <p>Java class for type element declaration.
20 *
21 * <p>The following schema fragment specifies the expected content contained within this class.
22 *
23 * <pre>
24 * <element name="type">
25 * <complexType>
26 * <complexContent>
27 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
28 * <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
29 * <attribute name="namespace" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
30 * </restriction>
31 * </complexContent>
32 * </complexType>
33 * </element>
34 * </pre>
35 *
36 *
37 */
38 @XmlAccessorType(XmlAccessType.FIELD)
39 @XmlType(name = "")
40 @XmlRootElement(name = "type")
41 public class Type {
42
43 @XmlAttribute(required = true)
44 protected java.lang.String name;
45 @XmlAttribute(required = true)
46 protected java.lang.String namespace;
47
48 /***
49 * Gets the value of the name property.
50 *
51 * @return
52 * possible object is
53 * {@link java.lang.String }
54 *
55 */
56 public java.lang.String getName() {
57 return name;
58 }
59
60 /***
61 * Sets the value of the name property.
62 *
63 * @param value
64 * allowed object is
65 * {@link java.lang.String }
66 *
67 */
68 public void setName(java.lang.String value) {
69 this.name = value;
70 }
71
72 /***
73 * Gets the value of the namespace property.
74 *
75 * @return
76 * possible object is
77 * {@link java.lang.String }
78 *
79 */
80 public java.lang.String getNamespace() {
81 return namespace;
82 }
83
84 /***
85 * Sets the value of the namespace property.
86 *
87 * @param value
88 * allowed object is
89 * {@link java.lang.String }
90 *
91 */
92 public void setNamespace(java.lang.String value) {
93 this.namespace = value;
94 }
95
96 }