Add a README for building the tool from source code
[test/tct/tools/manager.git] / src_jaxb / org / tizen / tct / tool / mgr / jaxb / plan / SuiteType.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:36 PM CST 
6 //
7
8
9 package org.tizen.tct.tool.mgr.jaxb.plan;
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 suiteType complex type.
20  * 
21  * <p>The following schema fragment specifies the expected content contained within this class.
22  * 
23  * <pre>
24  * &lt;complexType name="suiteType">
25  *   &lt;complexContent>
26  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27  *       &lt;sequence>
28  *         &lt;element name="auto_tcn" type="{http://www.w3.org/2001/XMLSchema}int"/>
29  *         &lt;element name="manual_tcn" type="{http://www.w3.org/2001/XMLSchema}int"/>
30  *         &lt;element name="total_tcn" type="{http://www.w3.org/2001/XMLSchema}int"/>
31  *         &lt;element name="pkg_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
32  *       &lt;/sequence>
33  *       &lt;attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
34  *       &lt;attribute name="launcher" type="{http://www.w3.org/2001/XMLSchema}string" />
35  *       &lt;attribute name="category" type="{http://www.w3.org/2001/XMLSchema}string" />
36  *     &lt;/restriction>
37  *   &lt;/complexContent>
38  * &lt;/complexType>
39  * </pre>
40  * 
41  * 
42  */
43 @XmlAccessorType(XmlAccessType.FIELD)
44 @XmlType(name = "suiteType", propOrder = {
45     "autoTcn",
46     "manualTcn",
47     "totalTcn",
48     "pkgName"
49 })
50 public class SuiteType {
51
52     @XmlElement(name = "auto_tcn")
53     protected int autoTcn;
54     @XmlElement(name = "manual_tcn")
55     protected int manualTcn;
56     @XmlElement(name = "total_tcn")
57     protected int totalTcn;
58     @XmlElement(name = "pkg_name", required = true)
59     protected String pkgName;
60     @XmlAttribute(name = "name")
61     protected String name;
62     @XmlAttribute(name = "launcher")
63     protected String launcher;
64     @XmlAttribute(name = "category")
65     protected String category;
66
67     /**
68      * Gets the value of the autoTcn property.
69      * 
70      */
71     public int getAutoTcn() {
72         return autoTcn;
73     }
74
75     /**
76      * Sets the value of the autoTcn property.
77      * 
78      */
79     public void setAutoTcn(int value) {
80         this.autoTcn = value;
81     }
82
83     /**
84      * Gets the value of the manualTcn property.
85      * 
86      */
87     public int getManualTcn() {
88         return manualTcn;
89     }
90
91     /**
92      * Sets the value of the manualTcn property.
93      * 
94      */
95     public void setManualTcn(int value) {
96         this.manualTcn = value;
97     }
98
99     /**
100      * Gets the value of the totalTcn property.
101      * 
102      */
103     public int getTotalTcn() {
104         return totalTcn;
105     }
106
107     /**
108      * Sets the value of the totalTcn property.
109      * 
110      */
111     public void setTotalTcn(int value) {
112         this.totalTcn = value;
113     }
114
115     /**
116      * Gets the value of the pkgName property.
117      * 
118      * @return
119      *     possible object is
120      *     {@link String }
121      *     
122      */
123     public String getPkgName() {
124         return pkgName;
125     }
126
127     /**
128      * Sets the value of the pkgName property.
129      * 
130      * @param value
131      *     allowed object is
132      *     {@link String }
133      *     
134      */
135     public void setPkgName(String value) {
136         this.pkgName = value;
137     }
138
139     /**
140      * Gets the value of the name property.
141      * 
142      * @return
143      *     possible object is
144      *     {@link String }
145      *     
146      */
147     public String getName() {
148         return name;
149     }
150
151     /**
152      * Sets the value of the name property.
153      * 
154      * @param value
155      *     allowed object is
156      *     {@link String }
157      *     
158      */
159     public void setName(String value) {
160         this.name = value;
161     }
162
163     /**
164      * Gets the value of the launcher property.
165      * 
166      * @return
167      *     possible object is
168      *     {@link String }
169      *     
170      */
171     public String getLauncher() {
172         return launcher;
173     }
174
175     /**
176      * Sets the value of the launcher property.
177      * 
178      * @param value
179      *     allowed object is
180      *     {@link String }
181      *     
182      */
183     public void setLauncher(String value) {
184         this.launcher = value;
185     }
186
187     /**
188      * Gets the value of the category property.
189      * 
190      * @return
191      *     possible object is
192      *     {@link String }
193      *     
194      */
195     public String getCategory() {
196         return category;
197     }
198
199     /**
200      * Sets the value of the category property.
201      * 
202      * @param value
203      *     allowed object is
204      *     {@link String }
205      *     
206      */
207     public void setCategory(String value) {
208         this.category = value;
209     }
210
211 }