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.XmlElement;
15 import javax.xml.bind.annotation.XmlType;
16
17
18 /***
19 * <p>Java class for nodeType complex type.
20 *
21 * <p>The following schema fragment specifies the expected content contained within this class.
22 *
23 * <pre>
24 * <complexType name="nodeType">
25 * <complexContent>
26 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27 * <sequence>
28 * <element name="context" type="{http://www.w3.org/2001/XMLSchema}string"/>
29 * <element name="nodeValue" type="{http://www.w3.org/2001/XMLSchema}string"/>
30 * <element name="textContent" type="{http://www.w3.org/2001/XMLSchema}string"/>
31 * </sequence>
32 * <attribute name="baseURI" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
33 * <attribute name="clazz" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
34 * <attribute name="localName" type="{http://www.w3.org/2001/XMLSchema}string" />
35 * <attribute name="namespaceURI" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
36 * <attribute name="nodeName" type="{http://www.w3.org/2001/XMLSchema}string" />
37 * <attribute name="path" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
38 * <attribute name="prefix" type="{http://www.w3.org/2001/XMLSchema}string" />
39 * <attribute name="src" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
40 * </restriction>
41 * </complexContent>
42 * </complexType>
43 * </pre>
44 *
45 *
46 */
47 @XmlAccessorType(XmlAccessType.FIELD)
48 @XmlType(name = "nodeType", propOrder = {
49 "context",
50 "nodeValue",
51 "textContent"
52 })
53 public class NodeType {
54
55 @XmlElement(namespace = "http://www.xmlhammer.org/2007/project", required = true)
56 protected java.lang.String context;
57 @XmlElement(namespace = "http://www.xmlhammer.org/2007/project", required = true)
58 protected java.lang.String nodeValue;
59 @XmlElement(namespace = "http://www.xmlhammer.org/2007/project", required = true)
60 protected java.lang.String textContent;
61 @XmlAttribute
62 protected java.lang.String baseURI;
63 @XmlAttribute(required = true)
64 protected java.lang.String clazz;
65 @XmlAttribute
66 protected java.lang.String localName;
67 @XmlAttribute
68 protected java.lang.String namespaceURI;
69 @XmlAttribute
70 protected java.lang.String nodeName;
71 @XmlAttribute(required = true)
72 protected java.lang.String path;
73 @XmlAttribute
74 protected java.lang.String prefix;
75 @XmlAttribute(required = true)
76 protected java.lang.String src;
77
78 /***
79 * Gets the value of the context property.
80 *
81 * @return
82 * possible object is
83 * {@link java.lang.String }
84 *
85 */
86 public java.lang.String getContext() {
87 return context;
88 }
89
90 /***
91 * Sets the value of the context property.
92 *
93 * @param value
94 * allowed object is
95 * {@link java.lang.String }
96 *
97 */
98 public void setContext(java.lang.String value) {
99 this.context = value;
100 }
101
102 /***
103 * Gets the value of the nodeValue property.
104 *
105 * @return
106 * possible object is
107 * {@link java.lang.String }
108 *
109 */
110 public java.lang.String getNodeValue() {
111 return nodeValue;
112 }
113
114 /***
115 * Sets the value of the nodeValue property.
116 *
117 * @param value
118 * allowed object is
119 * {@link java.lang.String }
120 *
121 */
122 public void setNodeValue(java.lang.String value) {
123 this.nodeValue = value;
124 }
125
126 /***
127 * Gets the value of the textContent property.
128 *
129 * @return
130 * possible object is
131 * {@link java.lang.String }
132 *
133 */
134 public java.lang.String getTextContent() {
135 return textContent;
136 }
137
138 /***
139 * Sets the value of the textContent property.
140 *
141 * @param value
142 * allowed object is
143 * {@link java.lang.String }
144 *
145 */
146 public void setTextContent(java.lang.String value) {
147 this.textContent = value;
148 }
149
150 /***
151 * Gets the value of the baseURI property.
152 *
153 * @return
154 * possible object is
155 * {@link java.lang.String }
156 *
157 */
158 public java.lang.String getBaseURI() {
159 return baseURI;
160 }
161
162 /***
163 * Sets the value of the baseURI property.
164 *
165 * @param value
166 * allowed object is
167 * {@link java.lang.String }
168 *
169 */
170 public void setBaseURI(java.lang.String value) {
171 this.baseURI = value;
172 }
173
174 /***
175 * Gets the value of the clazz property.
176 *
177 * @return
178 * possible object is
179 * {@link java.lang.String }
180 *
181 */
182 public java.lang.String getClazz() {
183 return clazz;
184 }
185
186 /***
187 * Sets the value of the clazz property.
188 *
189 * @param value
190 * allowed object is
191 * {@link java.lang.String }
192 *
193 */
194 public void setClazz(java.lang.String value) {
195 this.clazz = value;
196 }
197
198 /***
199 * Gets the value of the localName property.
200 *
201 * @return
202 * possible object is
203 * {@link java.lang.String }
204 *
205 */
206 public java.lang.String getLocalName() {
207 return localName;
208 }
209
210 /***
211 * Sets the value of the localName property.
212 *
213 * @param value
214 * allowed object is
215 * {@link java.lang.String }
216 *
217 */
218 public void setLocalName(java.lang.String value) {
219 this.localName = value;
220 }
221
222 /***
223 * Gets the value of the namespaceURI property.
224 *
225 * @return
226 * possible object is
227 * {@link java.lang.String }
228 *
229 */
230 public java.lang.String getNamespaceURI() {
231 return namespaceURI;
232 }
233
234 /***
235 * Sets the value of the namespaceURI property.
236 *
237 * @param value
238 * allowed object is
239 * {@link java.lang.String }
240 *
241 */
242 public void setNamespaceURI(java.lang.String value) {
243 this.namespaceURI = value;
244 }
245
246 /***
247 * Gets the value of the nodeName property.
248 *
249 * @return
250 * possible object is
251 * {@link java.lang.String }
252 *
253 */
254 public java.lang.String getNodeName() {
255 return nodeName;
256 }
257
258 /***
259 * Sets the value of the nodeName property.
260 *
261 * @param value
262 * allowed object is
263 * {@link java.lang.String }
264 *
265 */
266 public void setNodeName(java.lang.String value) {
267 this.nodeName = value;
268 }
269
270 /***
271 * Gets the value of the path property.
272 *
273 * @return
274 * possible object is
275 * {@link java.lang.String }
276 *
277 */
278 public java.lang.String getPath() {
279 return path;
280 }
281
282 /***
283 * Sets the value of the path property.
284 *
285 * @param value
286 * allowed object is
287 * {@link java.lang.String }
288 *
289 */
290 public void setPath(java.lang.String value) {
291 this.path = value;
292 }
293
294 /***
295 * Gets the value of the prefix property.
296 *
297 * @return
298 * possible object is
299 * {@link java.lang.String }
300 *
301 */
302 public java.lang.String getPrefix() {
303 return prefix;
304 }
305
306 /***
307 * Sets the value of the prefix property.
308 *
309 * @param value
310 * allowed object is
311 * {@link java.lang.String }
312 *
313 */
314 public void setPrefix(java.lang.String value) {
315 this.prefix = value;
316 }
317
318 /***
319 * Gets the value of the src property.
320 *
321 * @return
322 * possible object is
323 * {@link java.lang.String }
324 *
325 */
326 public java.lang.String getSrc() {
327 return src;
328 }
329
330 /***
331 * Sets the value of the src property.
332 *
333 * @param value
334 * allowed object is
335 * {@link java.lang.String }
336 *
337 */
338 public void setSrc(java.lang.String value) {
339 this.src = value;
340 }
341
342 }