d17bb8e1859d78813b9bd7345602900f37c38c2a
[test/tct/tools/manager.git] / src_jaxb / org / tizen / tct / tool / mgr / jaxb / planstatus / TasksType.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 java.util.ArrayList;
12 import java.util.List;
13 import javax.xml.bind.annotation.XmlAccessType;
14 import javax.xml.bind.annotation.XmlAccessorType;
15 import javax.xml.bind.annotation.XmlType;
16
17
18 /**
19  * <p>Java class for tasksType complex type.
20  * 
21  * <p>The following schema fragment specifies the expected content contained within this class.
22  * 
23  * <pre>
24  * &lt;complexType name="tasksType">
25  *   &lt;complexContent>
26  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27  *       &lt;sequence>
28  *         &lt;element name="executed" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
29  *         &lt;element name="executing" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
30  *       &lt;/sequence>
31  *     &lt;/restriction>
32  *   &lt;/complexContent>
33  * &lt;/complexType>
34  * </pre>
35  * 
36  * 
37  */
38 @XmlAccessorType(XmlAccessType.FIELD)
39 @XmlType(name = "tasksType", propOrder = {
40     "executed",
41     "executing"
42 })
43 public class TasksType {
44
45     protected List<String> executed;
46     protected List<String> executing;
47
48     /**
49      * Gets the value of the executed property.
50      * 
51      * <p>
52      * This accessor method returns a reference to the live list,
53      * not a snapshot. Therefore any modification you make to the
54      * returned list will be present inside the JAXB object.
55      * This is why there is not a <CODE>set</CODE> method for the executed property.
56      * 
57      * <p>
58      * For example, to add a new item, do as follows:
59      * <pre>
60      *    getExecuted().add(newItem);
61      * </pre>
62      * 
63      * 
64      * <p>
65      * Objects of the following type(s) are allowed in the list
66      * {@link String }
67      * 
68      * 
69      */
70     public List<String> getExecuted() {
71         if (executed == null) {
72             executed = new ArrayList<String>();
73         }
74         return this.executed;
75     }
76
77     /**
78      * Gets the value of the executing property.
79      * 
80      * <p>
81      * This accessor method returns a reference to the live list,
82      * not a snapshot. Therefore any modification you make to the
83      * returned list will be present inside the JAXB object.
84      * This is why there is not a <CODE>set</CODE> method for the executing property.
85      * 
86      * <p>
87      * For example, to add a new item, do as follows:
88      * <pre>
89      *    getExecuting().add(newItem);
90      * </pre>
91      * 
92      * 
93      * <p>
94      * Objects of the following type(s) are allowed in the list
95      * {@link String }
96      * 
97      * 
98      */
99     public List<String> getExecuting() {
100         if (executing == null) {
101             executing = new ArrayList<String>();
102         }
103         return this.executing;
104     }
105
106 }