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.XmlType;
15
16
17 /***
18 * <p>Java class for valueType complex type.
19 *
20 * <p>The following schema fragment specifies the expected content contained within this class.
21 *
22 * <pre>
23 * <complexType name="valueType">
24 * <complexContent>
25 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
26 * <attribute name="clazz" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
27 * <attribute name="src" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
28 * <attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
29 * </restriction>
30 * </complexContent>
31 * </complexType>
32 * </pre>
33 *
34 *
35 */
36 @XmlAccessorType(XmlAccessType.FIELD)
37 @XmlType(name = "valueType")
38 public class ValueType {
39
40 @XmlAttribute(required = true)
41 protected java.lang.String clazz;
42 @XmlAttribute(required = true)
43 protected java.lang.String src;
44 @XmlAttribute(required = true)
45 protected java.lang.String value;
46
47 /***
48 * Gets the value of the clazz property.
49 *
50 * @return
51 * possible object is
52 * {@link java.lang.String }
53 *
54 */
55 public java.lang.String getClazz() {
56 return clazz;
57 }
58
59 /***
60 * Sets the value of the clazz property.
61 *
62 * @param value
63 * allowed object is
64 * {@link java.lang.String }
65 *
66 */
67 public void setClazz(java.lang.String value) {
68 this.clazz = value;
69 }
70
71 /***
72 * Gets the value of the src property.
73 *
74 * @return
75 * possible object is
76 * {@link java.lang.String }
77 *
78 */
79 public java.lang.String getSrc() {
80 return src;
81 }
82
83 /***
84 * Sets the value of the src property.
85 *
86 * @param value
87 * allowed object is
88 * {@link java.lang.String }
89 *
90 */
91 public void setSrc(java.lang.String value) {
92 this.src = value;
93 }
94
95 /***
96 * Gets the value of the value property.
97 *
98 * @return
99 * possible object is
100 * {@link java.lang.String }
101 *
102 */
103 public java.lang.String getValue() {
104 return value;
105 }
106
107 /***
108 * Sets the value of the value property.
109 *
110 * @param value
111 * allowed object is
112 * {@link java.lang.String }
113 *
114 */
115 public void setValue(java.lang.String value) {
116 this.value = value;
117 }
118
119 }