Tizen 2.1 base
[sdk/emulator/qemu.git] / tizen / src / skin / client / jaxb_src / org / tizen / emulator / skin / dbi / RotationType.java
1 /**
2  *
3  *
4  * Copyright ( C ) 2011 - 2012 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact:
7  * GiWoong Kim <giwoong.kim@samsung.com>
8  * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
9  *
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License
12  * as published by the Free Software Foundation; either version 2
13  * of the License, or ( at your option ) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
23  *
24  * Contributors:
25  * - S-Core Co., Ltd
26  *
27  */
28
29 //
30 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5 
31 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
32 // Any modifications to this file will be lost upon recompilation of the source schema. 
33 // Generated on: 2012.10.22 at 04:10:02 PM KST 
34 //
35
36
37 package org.tizen.emulator.skin.dbi;
38
39 import javax.xml.bind.annotation.XmlAccessType;
40 import javax.xml.bind.annotation.XmlAccessorType;
41 import javax.xml.bind.annotation.XmlAttribute;
42 import javax.xml.bind.annotation.XmlElement;
43 import javax.xml.bind.annotation.XmlType;
44
45
46 /**
47  * <p>Java class for rotationType complex type.
48  * 
49  * <p>The following schema fragment specifies the expected content contained within this class.
50  * 
51  * <pre>
52  * &lt;complexType name="rotationType">
53  *   &lt;complexContent>
54  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
55  *       &lt;sequence>
56  *         &lt;element name="lcd" type="{http://www.tizen.org/emulator/skin/dbi}lcdType"/>
57  *         &lt;element name="imageList" type="{http://www.tizen.org/emulator/skin/dbi}imageListType"/>
58  *         &lt;element name="keyMapList" type="{http://www.tizen.org/emulator/skin/dbi}keyMapListType"/>
59  *       &lt;/sequence>
60  *       &lt;attribute name="name" use="required" type="{http://www.tizen.org/emulator/skin/dbi}rotationNameType" />
61  *     &lt;/restriction>
62  *   &lt;/complexContent>
63  * &lt;/complexType>
64  * </pre>
65  * 
66  * 
67  */
68 @XmlAccessorType(XmlAccessType.FIELD)
69 @XmlType(name = "rotationType", propOrder = {
70     "lcd",
71     "imageList",
72     "keyMapList"
73 })
74 public class RotationType {
75
76     @XmlElement(required = true)
77     protected LcdType lcd;
78     @XmlElement(required = true)
79     protected ImageListType imageList;
80     @XmlElement(required = true)
81     protected KeyMapListType keyMapList;
82     @XmlAttribute(name = "name", required = true)
83     protected RotationNameType name;
84
85     /**
86      * Gets the value of the lcd property.
87      * 
88      * @return
89      *     possible object is
90      *     {@link LcdType }
91      *     
92      */
93     public LcdType getLcd() {
94         return lcd;
95     }
96
97     /**
98      * Sets the value of the lcd property.
99      * 
100      * @param value
101      *     allowed object is
102      *     {@link LcdType }
103      *     
104      */
105     public void setLcd(LcdType value) {
106         this.lcd = value;
107     }
108
109     /**
110      * Gets the value of the imageList property.
111      * 
112      * @return
113      *     possible object is
114      *     {@link ImageListType }
115      *     
116      */
117     public ImageListType getImageList() {
118         return imageList;
119     }
120
121     /**
122      * Sets the value of the imageList property.
123      * 
124      * @param value
125      *     allowed object is
126      *     {@link ImageListType }
127      *     
128      */
129     public void setImageList(ImageListType value) {
130         this.imageList = value;
131     }
132
133     /**
134      * Gets the value of the keyMapList property.
135      * 
136      * @return
137      *     possible object is
138      *     {@link KeyMapListType }
139      *     
140      */
141     public KeyMapListType getKeyMapList() {
142         return keyMapList;
143     }
144
145     /**
146      * Sets the value of the keyMapList property.
147      * 
148      * @param value
149      *     allowed object is
150      *     {@link KeyMapListType }
151      *     
152      */
153     public void setKeyMapList(KeyMapListType value) {
154         this.keyMapList = value;
155     }
156
157     /**
158      * Gets the value of the name property.
159      * 
160      * @return
161      *     possible object is
162      *     {@link RotationNameType }
163      *     
164      */
165     public RotationNameType getName() {
166         return name;
167     }
168
169     /**
170      * Sets the value of the name property.
171      * 
172      * @param value
173      *     allowed object is
174      *     {@link RotationNameType }
175      *     
176      */
177     public void setName(RotationNameType value) {
178         this.name = value;
179     }
180
181 }