Add a README for building the tool from source code
[test/tct/tools/manager.git] / src_jaxb / org / tizen / tct / tool / mgr / jaxb / planstatus / PlanStatus.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.planstatus;
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.XmlRootElement;
16 import javax.xml.bind.annotation.XmlType;
17
18
19 /**
20  * <p>Java class for anonymous complex type.
21  * 
22  * <p>The following schema fragment specifies the expected content contained within this class.
23  * 
24  * <pre>
25  * &lt;complexType>
26  *   &lt;complexContent>
27  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
28  *       &lt;sequence>
29  *         &lt;element name="auto_tasks" type="{http://www.example.org/plan_status/}tasksType"/>
30  *         &lt;element name="manual_tasks" type="{http://www.example.org/plan_status/}tasksType"/>
31  *       &lt;/sequence>
32  *       &lt;attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
33  *       &lt;attribute name="executeType" type="{http://www.w3.org/2001/XMLSchema}string" />
34  *     &lt;/restriction>
35  *   &lt;/complexContent>
36  * &lt;/complexType>
37  * </pre>
38  * 
39  * 
40  */
41 @XmlAccessorType(XmlAccessType.FIELD)
42 @XmlType(name = "", propOrder = {
43     "autoTasks",
44     "manualTasks"
45 })
46 @XmlRootElement(name = "plan_status")
47 public class PlanStatus {
48
49     @XmlElement(name = "auto_tasks", required = true)
50     protected TasksType autoTasks;
51     @XmlElement(name = "manual_tasks", required = true)
52     protected TasksType manualTasks;
53     @XmlAttribute(name = "name")
54     protected String name;
55     @XmlAttribute(name = "executeType")
56     protected String executeType;
57
58     /**
59      * Gets the value of the autoTasks property.
60      * 
61      * @return
62      *     possible object is
63      *     {@link TasksType }
64      *     
65      */
66     public TasksType getAutoTasks() {
67         return autoTasks;
68     }
69
70     /**
71      * Sets the value of the autoTasks property.
72      * 
73      * @param value
74      *     allowed object is
75      *     {@link TasksType }
76      *     
77      */
78     public void setAutoTasks(TasksType value) {
79         this.autoTasks = value;
80     }
81
82     /**
83      * Gets the value of the manualTasks property.
84      * 
85      * @return
86      *     possible object is
87      *     {@link TasksType }
88      *     
89      */
90     public TasksType getManualTasks() {
91         return manualTasks;
92     }
93
94     /**
95      * Sets the value of the manualTasks property.
96      * 
97      * @param value
98      *     allowed object is
99      *     {@link TasksType }
100      *     
101      */
102     public void setManualTasks(TasksType value) {
103         this.manualTasks = value;
104     }
105
106     /**
107      * Gets the value of the name property.
108      * 
109      * @return
110      *     possible object is
111      *     {@link String }
112      *     
113      */
114     public String getName() {
115         return name;
116     }
117
118     /**
119      * Sets the value of the name property.
120      * 
121      * @param value
122      *     allowed object is
123      *     {@link String }
124      *     
125      */
126     public void setName(String value) {
127         this.name = value;
128     }
129
130     /**
131      * Gets the value of the executeType property.
132      * 
133      * @return
134      *     possible object is
135      *     {@link String }
136      *     
137      */
138     public String getExecuteType() {
139         return executeType;
140     }
141
142     /**
143      * Sets the value of the executeType property.
144      * 
145      * @param value
146      *     allowed object is
147      *     {@link String }
148      *     
149      */
150     public void setExecuteType(String value) {
151         this.executeType = value;
152     }
153
154 }