f18fd17d0bbf4f1da0ee98c1cc5a98c18aa823fb
[test/tct/tools/manager.git] / src_jaxb / org / tizen / tct / tool / mgr / jaxb / definition / SummaryType.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 summaryType complex type.
20  * 
21  * <p>The following schema fragment specifies the expected content contained within this class.
22  * 
23  * <pre>
24  * &lt;complexType name="summaryType">
25  *   &lt;complexContent>
26  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27  *       &lt;sequence>
28  *         &lt;element name="start_at" type="{http://www.w3.org/2001/XMLSchema}string"/>
29  *         &lt;element name="end_at" type="{http://www.w3.org/2001/XMLSchema}string"/>
30  *       &lt;/sequence>
31  *       &lt;attribute name="test_plan_name" type="{http://www.w3.org/2001/XMLSchema}string" />
32  *     &lt;/restriction>
33  *   &lt;/complexContent>
34  * &lt;/complexType>
35  * </pre>
36  * 
37  * 
38  */
39 @XmlAccessorType(XmlAccessType.FIELD)
40 @XmlType(name = "summaryType", propOrder = {
41     "startAt",
42     "endAt"
43 })
44 public class SummaryType {
45
46     @XmlElement(name = "start_at", required = true)
47     protected String startAt;
48     @XmlElement(name = "end_at", required = true)
49     protected String endAt;
50     @XmlAttribute(name = "test_plan_name")
51     protected String testPlanName;
52
53     /**
54      * Gets the value of the startAt property.
55      * 
56      * @return
57      *     possible object is
58      *     {@link String }
59      *     
60      */
61     public String getStartAt() {
62         return startAt;
63     }
64
65     /**
66      * Sets the value of the startAt property.
67      * 
68      * @param value
69      *     allowed object is
70      *     {@link String }
71      *     
72      */
73     public void setStartAt(String value) {
74         this.startAt = value;
75     }
76
77     /**
78      * Gets the value of the endAt property.
79      * 
80      * @return
81      *     possible object is
82      *     {@link String }
83      *     
84      */
85     public String getEndAt() {
86         return endAt;
87     }
88
89     /**
90      * Sets the value of the endAt property.
91      * 
92      * @param value
93      *     allowed object is
94      *     {@link String }
95      *     
96      */
97     public void setEndAt(String value) {
98         this.endAt = value;
99     }
100
101     /**
102      * Gets the value of the testPlanName property.
103      * 
104      * @return
105      *     possible object is
106      *     {@link String }
107      *     
108      */
109     public String getTestPlanName() {
110         return testPlanName;
111     }
112
113     /**
114      * Sets the value of the testPlanName property.
115      * 
116      * @param value
117      *     allowed object is
118      *     {@link String }
119      *     
120      */
121     public void setTestPlanName(String value) {
122         this.testPlanName = value;
123     }
124
125 }