xml: added layer schema
authorGiWoong Kim <giwoong.kim@samsung.com>
Mon, 22 Dec 2014 10:37:21 +0000 (19:37 +0900)
committerGiWoong Kim <giwoong.kim@samsung.com>
Sat, 2 May 2015 03:51:01 +0000 (12:51 +0900)
Change-Id: I4f541a161da58a0870ccf5a4f2d398218719b4ac
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
(cherry picked from commit 28f77aea070521c45f245b6b0f3d89ee2f94eb28)

tizen/src/skin/client/jaxb_src/org/tizen/emulator/skin/dbi/EmulatorUI.java
tizen/src/skin/client/xsd/ProfileSpecificSkin-layout.xsd

index d4685b5..6abf1b3 100644 (file)
@@ -1,11 +1,11 @@
 /**
  * XML Binding
  *
- * Copyright (C) 2011 - 2013 Samsung Electronics Co., Ltd. All rights reserved.
+ * Copyright (C) 2011 - 2014 Samsung Electronics Co., Ltd. All rights reserved.
  *
  * Contact:
  * GiWoong Kim <giwoong.kim@samsung.com>
- * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
+ * SangHo Park <sangho1206.park@samsung.com>
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
@@ -30,7 +30,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2013.09.16 at 11:45:09 AM KST 
+// Generated on: 2014.12.22 at 07:36:35 PM KST 
 //
 
 
@@ -54,6 +54,7 @@ import javax.xml.bind.annotation.XmlType;
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  *       &lt;all>
  *         &lt;element name="dbi_version" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         &lt;element name="layer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
  *         &lt;element name="rotations" type="{http://www.tizen.org/emulator/skin/dbi}rotationsType"/>
  *         &lt;element name="hover" type="{http://www.tizen.org/emulator/skin/dbi}hoverType" minOccurs="0"/>
  *         &lt;element name="popupMenu" type="{http://www.tizen.org/emulator/skin/dbi}popupMenuType" minOccurs="0"/>
@@ -75,6 +76,7 @@ public class EmulatorUI {
 
     @XmlElement(name = "dbi_version")
     protected float dbiVersion;
+    protected String layer;
     @XmlElement(required = true)
     protected RotationsType rotations;
     protected HoverType hover;
@@ -98,6 +100,30 @@ public class EmulatorUI {
     }
 
     /**
+     * Gets the value of the layer property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getLayer() {
+        return layer;
+    }
+
+    /**
+     * Sets the value of the layer property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setLayer(String value) {
+        this.layer = value;
+    }
+
+    /**
      * Gets the value of the rotations property.
      * 
      * @return
index 6f80b33..2cf4f9c 100644 (file)
@@ -6,6 +6,7 @@ xmlns:dbi="http://www.tizen.org/emulator/skin/dbi" elementFormDefault="qualified
                <complexType>
                        <all>
                                <element name="dbi_version" type="float" minOccurs="1" maxOccurs="1"> </element>
+                               <element name="layer" type="string" minOccurs="0" maxOccurs="1"> </element>
                                <element name="rotations" type="dbi:rotationsType" minOccurs="1" maxOccurs="1"> </element>
                                <element name="hover" type="dbi:hoverType" minOccurs="0" maxOccurs="1"> </element>
                                <element name="popupMenu" type="dbi:popupMenuType" minOccurs="0" maxOccurs="1"> </element>