1e4f0e3420820ef2c7812e6e3509e42157731360
[test/tct/tools/manager.git] / src_jaxb / org / tizen / tct / tool / mgr / jaxb / definition / ResultInfoType.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.XmlElement;
14 import javax.xml.bind.annotation.XmlType;
15
16
17 /**
18  * <p>Java class for result_info_type complex type.
19  * 
20  * <p>The following schema fragment specifies the expected content contained within this class.
21  * 
22  * <pre>
23  * &lt;complexType name="result_info_type">
24  *   &lt;complexContent>
25  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
26  *       &lt;sequence minOccurs="0">
27  *         &lt;element name="actual_result" type="{http://www.w3.org/2001/XMLSchema}string"/>
28  *         &lt;element name="start" type="{http://www.w3.org/2001/XMLSchema}string"/>
29  *         &lt;element name="end" type="{http://www.w3.org/2001/XMLSchema}string"/>
30  *         &lt;element name="stdout" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
31  *         &lt;element name="stderr" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
32  *       &lt;/sequence>
33  *     &lt;/restriction>
34  *   &lt;/complexContent>
35  * &lt;/complexType>
36  * </pre>
37  * 
38  * 
39  */
40 @XmlAccessorType(XmlAccessType.FIELD)
41 @XmlType(name = "result_info_type", propOrder = {
42     "actualResult",
43     "start",
44     "end",
45     "stdout",
46     "stderr"
47 })
48 public class ResultInfoType {
49
50     @XmlElement(name = "actual_result")
51     protected String actualResult;
52     protected String start;
53     protected String end;
54     protected String stdout;
55     protected String stderr;
56
57     /**
58      * Gets the value of the actualResult property.
59      * 
60      * @return
61      *     possible object is
62      *     {@link String }
63      *     
64      */
65     public String getActualResult() {
66         return actualResult;
67     }
68
69     /**
70      * Sets the value of the actualResult property.
71      * 
72      * @param value
73      *     allowed object is
74      *     {@link String }
75      *     
76      */
77     public void setActualResult(String value) {
78         this.actualResult = value;
79     }
80
81     /**
82      * Gets the value of the start property.
83      * 
84      * @return
85      *     possible object is
86      *     {@link String }
87      *     
88      */
89     public String getStart() {
90         return start;
91     }
92
93     /**
94      * Sets the value of the start property.
95      * 
96      * @param value
97      *     allowed object is
98      *     {@link String }
99      *     
100      */
101     public void setStart(String value) {
102         this.start = value;
103     }
104
105     /**
106      * Gets the value of the end property.
107      * 
108      * @return
109      *     possible object is
110      *     {@link String }
111      *     
112      */
113     public String getEnd() {
114         return end;
115     }
116
117     /**
118      * Sets the value of the end property.
119      * 
120      * @param value
121      *     allowed object is
122      *     {@link String }
123      *     
124      */
125     public void setEnd(String value) {
126         this.end = value;
127     }
128
129     /**
130      * Gets the value of the stdout property.
131      * 
132      * @return
133      *     possible object is
134      *     {@link String }
135      *     
136      */
137     public String getStdout() {
138         return stdout;
139     }
140
141     /**
142      * Sets the value of the stdout property.
143      * 
144      * @param value
145      *     allowed object is
146      *     {@link String }
147      *     
148      */
149     public void setStdout(String value) {
150         this.stdout = value;
151     }
152
153     /**
154      * Gets the value of the stderr property.
155      * 
156      * @return
157      *     possible object is
158      *     {@link String }
159      *     
160      */
161     public String getStderr() {
162         return stderr;
163     }
164
165     /**
166      * Sets the value of the stderr property.
167      * 
168      * @param value
169      *     allowed object is
170      *     {@link String }
171      *     
172      */
173     public void setStderr(String value) {
174         this.stderr = value;
175     }
176
177 }