From: GiWoong Kim Date: Mon, 22 Dec 2014 10:37:21 +0000 (+0900) Subject: xml: added layer schema X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.1~170 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5c46585921d4b5fd72ed15630d34becd30933ba5;p=sdk%2Femulator%2Fqemu.git xml: added layer schema Change-Id: I4f541a161da58a0870ccf5a4f2d398218719b4ac Signed-off-by: GiWoong Kim --- diff --git a/tizen/src/skin/client/jaxb_src/org/tizen/emulator/skin/dbi/EmulatorUI.java b/tizen/src/skin/client/jaxb_src/org/tizen/emulator/skin/dbi/EmulatorUI.java index d4685b55a5..6abf1b343f 100644 --- a/tizen/src/skin/client/jaxb_src/org/tizen/emulator/skin/dbi/EmulatorUI.java +++ b/tizen/src/skin/client/jaxb_src/org/tizen/emulator/skin/dbi/EmulatorUI.java @@ -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 - * YeongKyoon Lee + * SangHo Park * * 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 http://java.sun.com/xml/jaxb // 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; * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <all> * <element name="dbi_version" type="{http://www.w3.org/2001/XMLSchema}float"/> + * <element name="layer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="rotations" type="{http://www.tizen.org/emulator/skin/dbi}rotationsType"/> * <element name="hover" type="{http://www.tizen.org/emulator/skin/dbi}hoverType" minOccurs="0"/> * <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; @@ -97,6 +99,30 @@ public class EmulatorUI { this.dbiVersion = value; } + /** + * 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. * diff --git a/tizen/src/skin/client/xsd/ProfileSpecificSkin-layout.xsd b/tizen/src/skin/client/xsd/ProfileSpecificSkin-layout.xsd index 6f80b338b1..2cf4f9c877 100644 --- a/tizen/src/skin/client/xsd/ProfileSpecificSkin-layout.xsd +++ b/tizen/src/skin/client/xsd/ProfileSpecificSkin-layout.xsd @@ -6,6 +6,7 @@ xmlns:dbi="http://www.tizen.org/emulator/skin/dbi" elementFormDefault="qualified +