Add a README for building the tool from source code
[test/tct/tools/manager.git] / src_jaxb / org / tizen / tct / tool / mgr / jaxb / definition / SimpleMeasurementType.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 simpleMeasurementType complex type.
19  * 
20  * <p>The following schema fragment specifies the expected content contained within this class.
21  * 
22  * <pre>
23  * &lt;complexType name="simpleMeasurementType">
24  *   &lt;complexContent>
25  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
26  *       &lt;attribute name="value" type="{http://www.w3.org/2001/XMLSchema}string" />
27  *       &lt;attribute name="file" type="{http://www.w3.org/2001/XMLSchema}string" />
28  *     &lt;/restriction>
29  *   &lt;/complexContent>
30  * &lt;/complexType>
31  * </pre>
32  * 
33  * 
34  */
35 @XmlAccessorType(XmlAccessType.FIELD)
36 @XmlType(name = "simpleMeasurementType")
37 public class SimpleMeasurementType {
38
39     @XmlAttribute(name = "value")
40     protected String value;
41     @XmlAttribute(name = "file")
42     protected String file;
43
44     /**
45      * Gets the value of the value property.
46      * 
47      * @return
48      *     possible object is
49      *     {@link String }
50      *     
51      */
52     public String getValue() {
53         return value;
54     }
55
56     /**
57      * Sets the value of the value property.
58      * 
59      * @param value
60      *     allowed object is
61      *     {@link String }
62      *     
63      */
64     public void setValue(String value) {
65         this.value = value;
66     }
67
68     /**
69      * Gets the value of the file property.
70      * 
71      * @return
72      *     possible object is
73      *     {@link String }
74      *     
75      */
76     public String getFile() {
77         return file;
78     }
79
80     /**
81      * Sets the value of the file property.
82      * 
83      * @param value
84      *     allowed object is
85      *     {@link String }
86      *     
87      */
88     public void setFile(String value) {
89         this.file = value;
90     }
91
92 }