Add a README for building the tool from source code
[test/tct/tools/manager.git] / src_jaxb / org / tizen / tct / tool / mgr / jaxb / definition / BuildInfoType.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.XmlElement;
15 import javax.xml.bind.annotation.XmlType;
16
17
18 /**
19  * <p>Java class for BuildInfoType complex type.
20  * 
21  * <p>The following schema fragment specifies the expected content contained within this class.
22  * 
23  * <pre>
24  * &lt;complexType name="BuildInfoType">
25  *   &lt;complexContent>
26  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27  *       &lt;sequence>
28  *         &lt;element name="other" type="{http://www.w3.org/2001/XMLSchema}string"/>
29  *       &lt;/sequence>
30  *       &lt;attribute name="device_name" type="{http://www.w3.org/2001/XMLSchema}string" />
31  *       &lt;attribute name="device_model" type="{http://www.w3.org/2001/XMLSchema}string" />
32  *       &lt;attribute name="os_version" type="{http://www.w3.org/2001/XMLSchema}string" />
33  *       &lt;attribute name="device_id" type="{http://www.w3.org/2001/XMLSchema}string" />
34  *       &lt;attribute name="firmware_version" type="{http://www.w3.org/2001/XMLSchema}string" />
35  *       &lt;attribute name="screen_size" type="{http://www.w3.org/2001/XMLSchema}string" />
36  *       &lt;attribute name="resolution" type="{http://www.w3.org/2001/XMLSchema}string" />
37  *       &lt;attribute name="host" type="{http://www.w3.org/2001/XMLSchema}string" />
38  *       &lt;attribute name="cts_version" type="{http://www.w3.org/2001/XMLSchema}string" />
39  *       &lt;attribute name="build_id" type="{http://www.w3.org/2001/XMLSchema}string" />
40  *       &lt;attribute name="manufacturer" type="{http://www.w3.org/2001/XMLSchema}string" />
41  *     &lt;/restriction>
42  *   &lt;/complexContent>
43  * &lt;/complexType>
44  * </pre>
45  * 
46  * 
47  */
48 @XmlAccessorType(XmlAccessType.FIELD)
49 @XmlType(name = "BuildInfoType", propOrder = {
50     "other"
51 })
52 public class BuildInfoType {
53
54     @XmlElement(required = true)
55     protected String other;
56     @XmlAttribute(name = "device_name")
57     protected String deviceName;
58     @XmlAttribute(name = "device_model")
59     protected String deviceModel;
60     @XmlAttribute(name = "os_version")
61     protected String osVersion;
62     @XmlAttribute(name = "device_id")
63     protected String deviceId;
64     @XmlAttribute(name = "firmware_version")
65     protected String firmwareVersion;
66     @XmlAttribute(name = "screen_size")
67     protected String screenSize;
68     @XmlAttribute(name = "resolution")
69     protected String resolution;
70     @XmlAttribute(name = "host")
71     protected String host;
72     @XmlAttribute(name = "cts_version")
73     protected String ctsVersion;
74     @XmlAttribute(name = "build_id")
75     protected String buildId;
76     @XmlAttribute(name = "manufacturer")
77     protected String manufacturer;
78
79     /**
80      * Gets the value of the other property.
81      * 
82      * @return
83      *     possible object is
84      *     {@link String }
85      *     
86      */
87     public String getOther() {
88         return other;
89     }
90
91     /**
92      * Sets the value of the other property.
93      * 
94      * @param value
95      *     allowed object is
96      *     {@link String }
97      *     
98      */
99     public void setOther(String value) {
100         this.other = value;
101     }
102
103     /**
104      * Gets the value of the deviceName property.
105      * 
106      * @return
107      *     possible object is
108      *     {@link String }
109      *     
110      */
111     public String getDeviceName() {
112         return deviceName;
113     }
114
115     /**
116      * Sets the value of the deviceName property.
117      * 
118      * @param value
119      *     allowed object is
120      *     {@link String }
121      *     
122      */
123     public void setDeviceName(String value) {
124         this.deviceName = value;
125     }
126
127     /**
128      * Gets the value of the deviceModel property.
129      * 
130      * @return
131      *     possible object is
132      *     {@link String }
133      *     
134      */
135     public String getDeviceModel() {
136         return deviceModel;
137     }
138
139     /**
140      * Sets the value of the deviceModel property.
141      * 
142      * @param value
143      *     allowed object is
144      *     {@link String }
145      *     
146      */
147     public void setDeviceModel(String value) {
148         this.deviceModel = value;
149     }
150
151     /**
152      * Gets the value of the osVersion property.
153      * 
154      * @return
155      *     possible object is
156      *     {@link String }
157      *     
158      */
159     public String getOsVersion() {
160         return osVersion;
161     }
162
163     /**
164      * Sets the value of the osVersion property.
165      * 
166      * @param value
167      *     allowed object is
168      *     {@link String }
169      *     
170      */
171     public void setOsVersion(String value) {
172         this.osVersion = value;
173     }
174
175     /**
176      * Gets the value of the deviceId property.
177      * 
178      * @return
179      *     possible object is
180      *     {@link String }
181      *     
182      */
183     public String getDeviceId() {
184         return deviceId;
185     }
186
187     /**
188      * Sets the value of the deviceId property.
189      * 
190      * @param value
191      *     allowed object is
192      *     {@link String }
193      *     
194      */
195     public void setDeviceId(String value) {
196         this.deviceId = value;
197     }
198
199     /**
200      * Gets the value of the firmwareVersion property.
201      * 
202      * @return
203      *     possible object is
204      *     {@link String }
205      *     
206      */
207     public String getFirmwareVersion() {
208         return firmwareVersion;
209     }
210
211     /**
212      * Sets the value of the firmwareVersion property.
213      * 
214      * @param value
215      *     allowed object is
216      *     {@link String }
217      *     
218      */
219     public void setFirmwareVersion(String value) {
220         this.firmwareVersion = value;
221     }
222
223     /**
224      * Gets the value of the screenSize property.
225      * 
226      * @return
227      *     possible object is
228      *     {@link String }
229      *     
230      */
231     public String getScreenSize() {
232         return screenSize;
233     }
234
235     /**
236      * Sets the value of the screenSize property.
237      * 
238      * @param value
239      *     allowed object is
240      *     {@link String }
241      *     
242      */
243     public void setScreenSize(String value) {
244         this.screenSize = value;
245     }
246
247     /**
248      * Gets the value of the resolution property.
249      * 
250      * @return
251      *     possible object is
252      *     {@link String }
253      *     
254      */
255     public String getResolution() {
256         return resolution;
257     }
258
259     /**
260      * Sets the value of the resolution property.
261      * 
262      * @param value
263      *     allowed object is
264      *     {@link String }
265      *     
266      */
267     public void setResolution(String value) {
268         this.resolution = value;
269     }
270
271     /**
272      * Gets the value of the host property.
273      * 
274      * @return
275      *     possible object is
276      *     {@link String }
277      *     
278      */
279     public String getHost() {
280         return host;
281     }
282
283     /**
284      * Sets the value of the host property.
285      * 
286      * @param value
287      *     allowed object is
288      *     {@link String }
289      *     
290      */
291     public void setHost(String value) {
292         this.host = value;
293     }
294
295     /**
296      * Gets the value of the ctsVersion property.
297      * 
298      * @return
299      *     possible object is
300      *     {@link String }
301      *     
302      */
303     public String getCtsVersion() {
304         return ctsVersion;
305     }
306
307     /**
308      * Sets the value of the ctsVersion property.
309      * 
310      * @param value
311      *     allowed object is
312      *     {@link String }
313      *     
314      */
315     public void setCtsVersion(String value) {
316         this.ctsVersion = value;
317     }
318
319     /**
320      * Gets the value of the buildId property.
321      * 
322      * @return
323      *     possible object is
324      *     {@link String }
325      *     
326      */
327     public String getBuildId() {
328         return buildId;
329     }
330
331     /**
332      * Sets the value of the buildId property.
333      * 
334      * @param value
335      *     allowed object is
336      *     {@link String }
337      *     
338      */
339     public void setBuildId(String value) {
340         this.buildId = value;
341     }
342
343     /**
344      * Gets the value of the manufacturer property.
345      * 
346      * @return
347      *     possible object is
348      *     {@link String }
349      *     
350      */
351     public String getManufacturer() {
352         return manufacturer;
353     }
354
355     /**
356      * Sets the value of the manufacturer property.
357      * 
358      * @param value
359      *     allowed object is
360      *     {@link String }
361      *     
362      */
363     public void setManufacturer(String value) {
364         this.manufacturer = value;
365     }
366
367 }