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 characterDataType complex type.
20 *
21 * <p>The following schema fragment specifies the expected content contained within this class.
22 *
23 * <pre>
24 * <complexType name="characterDataType">
25 * <complexContent>
26 * <extension base="{http://www.xmlhammer.org/2007/project}nodeType">
27 * <sequence>
28 * <element name="data" type="{http://www.w3.org/2001/XMLSchema}string"/>
29 * </sequence>
30 * <attribute name="length" type="{http://www.w3.org/2001/XMLSchema}int" />
31 * </extension>
32 * </complexContent>
33 * </complexType>
34 * </pre>
35 *
36 *
37 */
38 @XmlAccessorType(XmlAccessType.FIELD)
39 @XmlType(name = "characterDataType", propOrder = {
40 "data"
41 })
42 public class CharacterDataType
43 extends NodeType
44 {
45
46 @XmlElement(namespace = "http://www.xmlhammer.org/2007/project", required = true)
47 protected java.lang.String data;
48 @XmlAttribute
49 protected Integer length;
50
51 /***
52 * Gets the value of the data property.
53 *
54 * @return
55 * possible object is
56 * {@link java.lang.String }
57 *
58 */
59 public java.lang.String getData() {
60 return data;
61 }
62
63 /***
64 * Sets the value of the data property.
65 *
66 * @param value
67 * allowed object is
68 * {@link java.lang.String }
69 *
70 */
71 public void setData(java.lang.String value) {
72 this.data = value;
73 }
74
75 /***
76 * Gets the value of the length property.
77 *
78 * @return
79 * possible object is
80 * {@link Integer }
81 *
82 */
83 public Integer getLength() {
84 return length;
85 }
86
87 /***
88 * Sets the value of the length property.
89 *
90 * @param value
91 * allowed object is
92 * {@link Integer }
93 *
94 */
95 public void setLength(Integer value) {
96 this.length = value;
97 }
98
99 }