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