1
2
3
4
5
6
7
8
9 package org.xmlhammer.model.jaxp;
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 stringProperty complex type.
19 *
20 * <p>The following schema fragment specifies the expected content contained within this class.
21 *
22 * <pre>
23 * <complexType name="stringProperty">
24 * <complexContent>
25 * <extension base="{http://www.xmlhammer.org/2007/jaxp}activatable">
26 * <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
27 * <attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
28 * </extension>
29 * </complexContent>
30 * </complexType>
31 * </pre>
32 *
33 *
34 */
35 @XmlAccessorType(XmlAccessType.FIELD)
36 @XmlType(name = "stringProperty")
37 public class StringProperty
38 extends Activatable
39 {
40
41 @XmlAttribute(required = true)
42 protected String name;
43 @XmlAttribute(required = true)
44 protected String value;
45
46 /***
47 * Gets the value of the name property.
48 *
49 * @return
50 * possible object is
51 * {@link String }
52 *
53 */
54 public String getName() {
55 return name;
56 }
57
58 /***
59 * Sets the value of the name property.
60 *
61 * @param value
62 * allowed object is
63 * {@link String }
64 *
65 */
66 public void setName(String value) {
67 this.name = value;
68 }
69
70 /***
71 * Gets the value of the value property.
72 *
73 * @return
74 * possible object is
75 * {@link String }
76 *
77 */
78 public String getValue() {
79 return value;
80 }
81
82 /***
83 * Sets the value of the value property.
84 *
85 * @param value
86 * allowed object is
87 * {@link String }
88 *
89 */
90 public void setValue(String value) {
91 this.value = value;
92 }
93
94 }