Add a README for building the tool from source code
[test/tct/tools/manager.git] / src_jaxb / org / tizen / tct / tool / mgr / jaxb / definition / MeasurementType.java
1 //
2 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
3 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
4 // Any modifications to this file will be lost upon recompilation of the source schema. 
5 // Generated on: 2014.04.24 at 02:32:35 PM CST 
6 //
7
8
9 package org.tizen.tct.tool.mgr.jaxb.definition;
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 measurementType complex type.
19  * 
20  * <p>The following schema fragment specifies the expected content contained within this class.
21  * 
22  * <pre>
23  * &lt;complexType name="measurementType">
24  *   &lt;complexContent>
25  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
26  *       &lt;attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
27  *       &lt;attribute name="value" type="{http://www.w3.org/2001/XMLSchema}string" />
28  *       &lt;attribute name="unit" type="{http://www.w3.org/2001/XMLSchema}string" />
29  *       &lt;attribute name="target" type="{http://www.w3.org/2001/XMLSchema}string" />
30  *       &lt;attribute name="failure" type="{http://www.w3.org/2001/XMLSchema}string" />
31  *       &lt;attribute name="power" type="{http://www.w3.org/2001/XMLSchema}string" />
32  *     &lt;/restriction>
33  *   &lt;/complexContent>
34  * &lt;/complexType>
35  * </pre>
36  * 
37  * 
38  */
39 @XmlAccessorType(XmlAccessType.FIELD)
40 @XmlType(name = "measurementType")
41 public class MeasurementType {
42
43     @XmlAttribute(name = "name")
44     protected String name;
45     @XmlAttribute(name = "value")
46     protected String value;
47     @XmlAttribute(name = "unit")
48     protected String unit;
49     @XmlAttribute(name = "target")
50     protected String target;
51     @XmlAttribute(name = "failure")
52     protected String failure;
53     @XmlAttribute(name = "power")
54     protected String power;
55
56     /**
57      * Gets the value of the name property.
58      * 
59      * @return
60      *     possible object is
61      *     {@link String }
62      *     
63      */
64     public String getName() {
65         return name;
66     }
67
68     /**
69      * Sets the value of the name property.
70      * 
71      * @param value
72      *     allowed object is
73      *     {@link String }
74      *     
75      */
76     public void setName(String value) {
77         this.name = value;
78     }
79
80     /**
81      * Gets the value of the value property.
82      * 
83      * @return
84      *     possible object is
85      *     {@link String }
86      *     
87      */
88     public String getValue() {
89         return value;
90     }
91
92     /**
93      * Sets the value of the value property.
94      * 
95      * @param value
96      *     allowed object is
97      *     {@link String }
98      *     
99      */
100     public void setValue(String value) {
101         this.value = value;
102     }
103
104     /**
105      * Gets the value of the unit property.
106      * 
107      * @return
108      *     possible object is
109      *     {@link String }
110      *     
111      */
112     public String getUnit() {
113         return unit;
114     }
115
116     /**
117      * Sets the value of the unit property.
118      * 
119      * @param value
120      *     allowed object is
121      *     {@link String }
122      *     
123      */
124     public void setUnit(String value) {
125         this.unit = value;
126     }
127
128     /**
129      * Gets the value of the target property.
130      * 
131      * @return
132      *     possible object is
133      *     {@link String }
134      *     
135      */
136     public String getTarget() {
137         return target;
138     }
139
140     /**
141      * Sets the value of the target property.
142      * 
143      * @param value
144      *     allowed object is
145      *     {@link String }
146      *     
147      */
148     public void setTarget(String value) {
149         this.target = value;
150     }
151
152     /**
153      * Gets the value of the failure property.
154      * 
155      * @return
156      *     possible object is
157      *     {@link String }
158      *     
159      */
160     public String getFailure() {
161         return failure;
162     }
163
164     /**
165      * Sets the value of the failure property.
166      * 
167      * @param value
168      *     allowed object is
169      *     {@link String }
170      *     
171      */
172     public void setFailure(String value) {
173         this.failure = value;
174     }
175
176     /**
177      * Gets the value of the power property.
178      * 
179      * @return
180      *     possible object is
181      *     {@link String }
182      *     
183      */
184     public String getPower() {
185         return power;
186     }
187
188     /**
189      * Sets the value of the power property.
190      * 
191      * @param value
192      *     allowed object is
193      *     {@link String }
194      *     
195      */
196     public void setPower(String value) {
197         this.power = value;
198     }
199
200 }