From 6f7425b99a3c321f0b4c68d6537b82122daae799 Mon Sep 17 00:00:00 2001 From: GiWoong Kim Date: Mon, 22 Dec 2014 19:37:21 +0900 Subject: [PATCH] xml: added layer schema Change-Id: I4f541a161da58a0870ccf5a4f2d398218719b4ac Signed-off-by: GiWoong Kim (cherry picked from commit 28f77aea070521c45f245b6b0f3d89ee2f94eb28) --- .../org/tizen/emulator/skin/dbi/EmulatorUI.java | 32 ++++++++++++++++++++-- .../skin/client/xsd/ProfileSpecificSkin-layout.xsd | 1 + 2 files changed, 30 insertions(+), 3 deletions(-) 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 d4685b5..6abf1b3 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; @@ -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 diff --git a/tizen/src/skin/client/xsd/ProfileSpecificSkin-layout.xsd b/tizen/src/skin/client/xsd/ProfileSpecificSkin-layout.xsd index 6f80b33..2cf4f9c 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 + -- 2.7.4