skin: modified XML bindings
authorGiWoong Kim <giwoong.kim@samsung.com>
Wed, 10 Jul 2013 10:57:35 +0000 (19:57 +0900)
committerGiWoong Kim <giwoong.kim@samsung.com>
Wed, 10 Jul 2013 10:58:07 +0000 (19:58 +0900)
modified XML bindings

Change-Id: I54ed71cb70fe3d6cab080b48b71c2a119fc9be47
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
28 files changed:
tizen/src/skin/client/jaxb_src/org/tizen/emulator/skin/dbi/ColorsType.java [deleted file]
tizen/src/skin/client/jaxb_src/org/tizen/emulator/skin/dbi/DisplayType.java [new file with mode: 0644]
tizen/src/skin/client/jaxb_src/org/tizen/emulator/skin/dbi/EmulatorUI.java
tizen/src/skin/client/jaxb_src/org/tizen/emulator/skin/dbi/EventInfoType.java
tizen/src/skin/client/jaxb_src/org/tizen/emulator/skin/dbi/HoverType.java [new file with mode: 0644]
tizen/src/skin/client/jaxb_src/org/tizen/emulator/skin/dbi/ImageListType.java
tizen/src/skin/client/jaxb_src/org/tizen/emulator/skin/dbi/KeyMapListType.java
tizen/src/skin/client/jaxb_src/org/tizen/emulator/skin/dbi/KeyMapType.java
tizen/src/skin/client/jaxb_src/org/tizen/emulator/skin/dbi/LcdType.java [deleted file]
tizen/src/skin/client/jaxb_src/org/tizen/emulator/skin/dbi/ObjectFactory.java
tizen/src/skin/client/jaxb_src/org/tizen/emulator/skin/dbi/RegionType.java
tizen/src/skin/client/jaxb_src/org/tizen/emulator/skin/dbi/RgbType.java
tizen/src/skin/client/jaxb_src/org/tizen/emulator/skin/dbi/RotationNameType.java
tizen/src/skin/client/jaxb_src/org/tizen/emulator/skin/dbi/RotationType.java
tizen/src/skin/client/jaxb_src/org/tizen/emulator/skin/dbi/RotationsType.java
tizen/src/skin/client/jaxb_src/org/tizen/emulator/skin/dbi/package-info.java
tizen/src/skin/client/skins/emul-320x480/default.dbi
tizen/src/skin/client/skins/emul-480x800-3btn/default.dbi
tizen/src/skin/client/skins/emul-480x800/default.dbi
tizen/src/skin/client/skins/emul-600x1024/default.dbi
tizen/src/skin/client/skins/emul-720x1280-3btn/default.dbi
tizen/src/skin/client/skins/emul-720x1280/default.dbi
tizen/src/skin/client/skins/emul-general-3btn/default.dbi
tizen/src/skin/client/skins/emul-general/default.dbi
tizen/src/skin/client/src/org/tizen/emulator/skin/EmulatorSkin.java
tizen/src/skin/client/src/org/tizen/emulator/skin/EmulatorSkinMain.java
tizen/src/skin/client/src/org/tizen/emulator/skin/layout/PhoneShapeSkinComposer.java
tizen/src/skin/client/xsd/dbi.xsd

diff --git a/tizen/src/skin/client/jaxb_src/org/tizen/emulator/skin/dbi/ColorsType.java b/tizen/src/skin/client/jaxb_src/org/tizen/emulator/skin/dbi/ColorsType.java
deleted file mode 100644 (file)
index ef52097..0000000
+++ /dev/null
@@ -1,95 +0,0 @@
-/**
- *
- *
- * Copyright ( C ) 2011 - 2012 Samsung Electronics Co., Ltd. All rights reserved.
- *
- * Contact:
- * GiWoong Kim <giwoong.kim@samsung.com>
- * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or ( at your option ) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
- *
- * Contributors:
- * - S-Core Co., Ltd
- *
- */
-
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5 
-// 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: 2012.10.22 at 04:10:02 PM KST 
-//
-
-
-package org.tizen.emulator.skin.dbi;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- * <p>Java class for colorsType complex type.
- * 
- * <p>The following schema fragment specifies the expected content contained within this class.
- * 
- * <pre>
- * &lt;complexType name="colorsType">
- *   &lt;complexContent>
- *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       &lt;all>
- *         &lt;element name="hoverColor" type="{http://www.tizen.org/emulator/skin/dbi}rgbType" minOccurs="0"/>
- *       &lt;/all>
- *     &lt;/restriction>
- *   &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- * 
- * 
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "colorsType", propOrder = {
-
-})
-public class ColorsType {
-
-    protected RgbType hoverColor;
-
-    /**
-     * Gets the value of the hoverColor property.
-     * 
-     * @return
-     *     possible object is
-     *     {@link RgbType }
-     *     
-     */
-    public RgbType getHoverColor() {
-        return hoverColor;
-    }
-
-    /**
-     * Sets the value of the hoverColor property.
-     * 
-     * @param value
-     *     allowed object is
-     *     {@link RgbType }
-     *     
-     */
-    public void setHoverColor(RgbType value) {
-        this.hoverColor = value;
-    }
-
-}
diff --git a/tizen/src/skin/client/jaxb_src/org/tizen/emulator/skin/dbi/DisplayType.java b/tizen/src/skin/client/jaxb_src/org/tizen/emulator/skin/dbi/DisplayType.java
new file mode 100644 (file)
index 0000000..46a53de
--- /dev/null
@@ -0,0 +1,117 @@
+/**
+ * XML Binding
+ *
+ * Copyright (C) 2011 - 2013 Samsung Electronics Co., Ltd. All rights reserved.
+ *
+ * Contact:
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+ *
+ * Contributors:
+ * - S-Core Co., Ltd
+ *
+ */
+
+//
+// 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.07.10 at 07:19:41 PM KST 
+//
+
+
+package org.tizen.emulator.skin.dbi;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for displayType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="displayType">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;all>
+ *         &lt;element name="region" type="{http://www.tizen.org/emulator/skin/dbi}regionType"/>
+ *       &lt;/all>
+ *       &lt;attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "displayType", propOrder = {
+
+})
+public class DisplayType {
+
+    @XmlElement(required = true)
+    protected RegionType region;
+    @XmlAttribute(name = "id", required = true)
+    protected int id;
+
+    /**
+     * Gets the value of the region property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link RegionType }
+     *     
+     */
+    public RegionType getRegion() {
+        return region;
+    }
+
+    /**
+     * Sets the value of the region property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link RegionType }
+     *     
+     */
+    public void setRegion(RegionType value) {
+        this.region = value;
+    }
+
+    /**
+     * Gets the value of the id property.
+     * 
+     */
+    public int getId() {
+        return id;
+    }
+
+    /**
+     * Sets the value of the id property.
+     * 
+     */
+    public void setId(int value) {
+        this.id = value;
+    }
+
+}
index dfe1dd09ab0102d050a13dc7b11600c20f3937ea..14c83c2a17d56243c5c73d3261419fdc7c269492 100644 (file)
@@ -1,7 +1,7 @@
 /**
+ * XML Binding
  *
- *
- * Copyright ( C ) 2011 - 2012 Samsung Electronics Co., Ltd. All rights reserved.
+ * Copyright (C) 2011 - 2013 Samsung Electronics Co., Ltd. All rights reserved.
  *
  * Contact:
  * GiWoong Kim <giwoong.kim@samsung.com>
@@ -10,7 +10,7 @@
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
  * as published by the Free Software Foundation; either version 2
- * of the License, or ( at your option ) any later version.
+ * of the License, or (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  */
 
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5 
+// 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: 2012.10.22 at 04:10:02 PM KST 
+// Generated on: 2013.07.10 at 07:19:41 PM KST 
 //
 
 
@@ -53,8 +53,9 @@ import javax.xml.bind.annotation.XmlType;
  *   &lt;complexContent>
  *     &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="rotations" type="{http://www.tizen.org/emulator/skin/dbi}rotationsType"/>
- *         &lt;element name="colors" type="{http://www.tizen.org/emulator/skin/dbi}colorsType" minOccurs="0"/>
+ *         &lt;element name="hover" type="{http://www.tizen.org/emulator/skin/dbi}hoverType" minOccurs="0"/>
  *       &lt;/all>
  *     &lt;/restriction>
  *   &lt;/complexContent>
@@ -70,9 +71,27 @@ import javax.xml.bind.annotation.XmlType;
 @XmlRootElement(name = "EmulatorUI")
 public class EmulatorUI {
 
+    @XmlElement(name = "dbi_version")
+    protected float dbiVersion;
     @XmlElement(required = true)
     protected RotationsType rotations;
-    protected ColorsType colors;
+    protected HoverType hover;
+
+    /**
+     * Gets the value of the dbiVersion property.
+     * 
+     */
+    public float getDbiVersion() {
+        return dbiVersion;
+    }
+
+    /**
+     * Sets the value of the dbiVersion property.
+     * 
+     */
+    public void setDbiVersion(float value) {
+        this.dbiVersion = value;
+    }
 
     /**
      * Gets the value of the rotations property.
@@ -99,27 +118,27 @@ public class EmulatorUI {
     }
 
     /**
-     * Gets the value of the colors property.
+     * Gets the value of the hover property.
      * 
      * @return
      *     possible object is
-     *     {@link ColorsType }
+     *     {@link HoverType }
      *     
      */
-    public ColorsType getColors() {
-        return colors;
+    public HoverType getHover() {
+        return hover;
     }
 
     /**
-     * Sets the value of the colors property.
+     * Sets the value of the hover property.
      * 
      * @param value
      *     allowed object is
-     *     {@link ColorsType }
+     *     {@link HoverType }
      *     
      */
-    public void setColors(ColorsType value) {
-        this.colors = value;
+    public void setHover(HoverType value) {
+        this.hover = value;
     }
 
 }
index 1392b251dd3c6f03e745637987a6c7c98075ca47..6199df4bc026e6bdd6b50f6ee06c7dc6b7f0366a 100644 (file)
@@ -1,7 +1,7 @@
 /**
+ * XML Binding
  *
- *
- * Copyright ( C ) 2011 - 2012 Samsung Electronics Co., Ltd. All rights reserved.
+ * Copyright (C) 2011 - 2013 Samsung Electronics Co., Ltd. All rights reserved.
  *
  * Contact:
  * GiWoong Kim <giwoong.kim@samsung.com>
@@ -10,7 +10,7 @@
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
  * as published by the Free Software Foundation; either version 2
- * of the License, or ( at your option ) any later version.
+ * of the License, or (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  */
 
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5 
+// 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: 2012.10.22 at 04:10:02 PM KST 
+// Generated on: 2013.07.10 at 07:19:41 PM KST 
 //
 
 
diff --git a/tizen/src/skin/client/jaxb_src/org/tizen/emulator/skin/dbi/HoverType.java b/tizen/src/skin/client/jaxb_src/org/tizen/emulator/skin/dbi/HoverType.java
new file mode 100644 (file)
index 0000000..27cb590
--- /dev/null
@@ -0,0 +1,95 @@
+/**
+ * XML Binding
+ *
+ * Copyright (C) 2011 - 2013 Samsung Electronics Co., Ltd. All rights reserved.
+ *
+ * Contact:
+ * GiWoong Kim <giwoong.kim@samsung.com>
+ * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+ *
+ * Contributors:
+ * - S-Core Co., Ltd
+ *
+ */
+
+//
+// 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.07.10 at 07:19:41 PM KST 
+//
+
+
+package org.tizen.emulator.skin.dbi;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for hoverType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="hoverType">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;all>
+ *         &lt;element name="color" type="{http://www.tizen.org/emulator/skin/dbi}rgbType" minOccurs="0"/>
+ *       &lt;/all>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "hoverType", propOrder = {
+
+})
+public class HoverType {
+
+    protected RgbType color;
+
+    /**
+     * Gets the value of the color property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link RgbType }
+     *     
+     */
+    public RgbType getColor() {
+        return color;
+    }
+
+    /**
+     * Sets the value of the color property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link RgbType }
+     *     
+     */
+    public void setColor(RgbType value) {
+        this.color = value;
+    }
+
+}
index 547cf2e975e2c2248732c2e90666331cfba5b27e..39696fe0c89b3615095161e9a118b7fda996b16e 100644 (file)
@@ -1,7 +1,7 @@
 /**
+ * XML Binding
  *
- *
- * Copyright ( C ) 2011 - 2012 Samsung Electronics Co., Ltd. All rights reserved.
+ * Copyright (C) 2011 - 2013 Samsung Electronics Co., Ltd. All rights reserved.
  *
  * Contact:
  * GiWoong Kim <giwoong.kim@samsung.com>
@@ -10,7 +10,7 @@
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
  * as published by the Free Software Foundation; either version 2
- * of the License, or ( at your option ) any later version.
+ * of the License, or (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  */
 
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5 
+// 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: 2012.10.22 at 04:10:02 PM KST 
+// Generated on: 2013.07.10 at 07:19:41 PM KST 
 //
 
 
index 66dc1018a7a7b5ce6a168a16f97c8d343f5fcf43..6ffdb31382a0c0407fd533a8c0bc3e9e2cbea828 100644 (file)
@@ -1,7 +1,7 @@
 /**
+ * XML Binding
  *
- *
- * Copyright ( C ) 2011 - 2012 Samsung Electronics Co., Ltd. All rights reserved.
+ * Copyright (C) 2011 - 2013 Samsung Electronics Co., Ltd. All rights reserved.
  *
  * Contact:
  * GiWoong Kim <giwoong.kim@samsung.com>
@@ -10,7 +10,7 @@
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
  * as published by the Free Software Foundation; either version 2
- * of the License, or ( at your option ) any later version.
+ * of the License, or (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  */
 
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5 
+// 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: 2012.10.22 at 04:10:02 PM KST 
+// Generated on: 2013.07.10 at 07:19:41 PM KST 
 //
 
 
index f9a35785cf5be9862d7e9a35b3177fbc4dbebd24..7bd4dca6ed5737c11d16cd3ee92372fd6be73513 100644 (file)
@@ -1,7 +1,7 @@
 /**
+ * XML Binding
  *
- *
- * Copyright ( C ) 2011 - 2012 Samsung Electronics Co., Ltd. All rights reserved.
+ * Copyright (C) 2011 - 2013 Samsung Electronics Co., Ltd. All rights reserved.
  *
  * Contact:
  * GiWoong Kim <giwoong.kim@samsung.com>
@@ -10,7 +10,7 @@
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
  * as published by the Free Software Foundation; either version 2
- * of the License, or ( at your option ) any later version.
+ * of the License, or (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  */
 
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5 
+// 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: 2012.10.22 at 04:10:02 PM KST 
+// Generated on: 2013.07.10 at 07:19:41 PM KST 
 //
 
 
diff --git a/tizen/src/skin/client/jaxb_src/org/tizen/emulator/skin/dbi/LcdType.java b/tizen/src/skin/client/jaxb_src/org/tizen/emulator/skin/dbi/LcdType.java
deleted file mode 100644 (file)
index d2b0c56..0000000
+++ /dev/null
@@ -1,117 +0,0 @@
-/**
- *
- *
- * Copyright ( C ) 2011 - 2012 Samsung Electronics Co., Ltd. All rights reserved.
- *
- * Contact:
- * GiWoong Kim <giwoong.kim@samsung.com>
- * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or ( at your option ) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
- *
- * Contributors:
- * - S-Core Co., Ltd
- *
- */
-
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5 
-// 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: 2012.10.22 at 04:10:02 PM KST 
-//
-
-
-package org.tizen.emulator.skin.dbi;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlAttribute;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- * <p>Java class for lcdType complex type.
- * 
- * <p>The following schema fragment specifies the expected content contained within this class.
- * 
- * <pre>
- * &lt;complexType name="lcdType">
- *   &lt;complexContent>
- *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       &lt;all>
- *         &lt;element name="region" type="{http://www.tizen.org/emulator/skin/dbi}regionType"/>
- *       &lt;/all>
- *       &lt;attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
- *     &lt;/restriction>
- *   &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- * 
- * 
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "lcdType", propOrder = {
-
-})
-public class LcdType {
-
-    @XmlElement(required = true)
-    protected RegionType region;
-    @XmlAttribute(name = "id", required = true)
-    protected int id;
-
-    /**
-     * Gets the value of the region property.
-     * 
-     * @return
-     *     possible object is
-     *     {@link RegionType }
-     *     
-     */
-    public RegionType getRegion() {
-        return region;
-    }
-
-    /**
-     * Sets the value of the region property.
-     * 
-     * @param value
-     *     allowed object is
-     *     {@link RegionType }
-     *     
-     */
-    public void setRegion(RegionType value) {
-        this.region = value;
-    }
-
-    /**
-     * Gets the value of the id property.
-     * 
-     */
-    public int getId() {
-        return id;
-    }
-
-    /**
-     * Sets the value of the id property.
-     * 
-     */
-    public void setId(int value) {
-        this.id = value;
-    }
-
-}
index 04bda4871eb374bea74ae69ac75ee20b32503a8d..ad389925c5dda2cdd3fc0f74b301549652bee0fe 100644 (file)
@@ -1,7 +1,7 @@
 /**
+ * XML Binding
  *
- *
- * Copyright ( C ) 2011 - 2012 Samsung Electronics Co., Ltd. All rights reserved.
+ * Copyright (C) 2011 - 2013 Samsung Electronics Co., Ltd. All rights reserved.
  *
  * Contact:
  * GiWoong Kim <giwoong.kim@samsung.com>
@@ -10,7 +10,7 @@
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
  * as published by the Free Software Foundation; either version 2
- * of the License, or ( at your option ) any later version.
+ * of the License, or (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  */
 
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5 
+// 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: 2012.10.22 at 04:10:02 PM KST 
+// Generated on: 2013.07.10 at 07:19:41 PM KST 
 //
 
 
@@ -81,11 +81,11 @@ public class ObjectFactory {
     }
 
     /**
-     * Create an instance of {@link ColorsType }
+     * Create an instance of {@link HoverType }
      * 
      */
-    public ColorsType createColorsType() {
-        return new ColorsType();
+    public HoverType createHoverType() {
+        return new HoverType();
     }
 
     /**
@@ -113,19 +113,19 @@ public class ObjectFactory {
     }
 
     /**
-     * Create an instance of {@link KeyMapListType }
+     * Create an instance of {@link DisplayType }
      * 
      */
-    public KeyMapListType createKeyMapListType() {
-        return new KeyMapListType();
+    public DisplayType createDisplayType() {
+        return new DisplayType();
     }
 
     /**
-     * Create an instance of {@link LcdType }
+     * Create an instance of {@link KeyMapListType }
      * 
      */
-    public LcdType createLcdType() {
-        return new LcdType();
+    public KeyMapListType createKeyMapListType() {
+        return new KeyMapListType();
     }
 
     /**
index 5312b30290e2401fd423fbc257a04ac2d412d534..763726d67bcdec7b993182a762605e6b70f5561e 100644 (file)
@@ -1,7 +1,7 @@
 /**
+ * XML Binding
  *
- *
- * Copyright ( C ) 2011 - 2012 Samsung Electronics Co., Ltd. All rights reserved.
+ * Copyright (C) 2011 - 2013 Samsung Electronics Co., Ltd. All rights reserved.
  *
  * Contact:
  * GiWoong Kim <giwoong.kim@samsung.com>
@@ -10,7 +10,7 @@
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
  * as published by the Free Software Foundation; either version 2
- * of the License, or ( at your option ) any later version.
+ * of the License, or (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  */
 
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5 
+// 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: 2012.10.22 at 04:10:02 PM KST 
+// Generated on: 2013.07.10 at 07:19:41 PM KST 
 //
 
 
index c693840ce4229f2fdb8c01461f2f2b67eb192b6b..1d12458485d1c1c0e03006abb662c02cf4fdf0cb 100644 (file)
@@ -1,7 +1,7 @@
 /**
+ * XML Binding
  *
- *
- * Copyright ( C ) 2011 - 2012 Samsung Electronics Co., Ltd. All rights reserved.
+ * Copyright (C) 2011 - 2013 Samsung Electronics Co., Ltd. All rights reserved.
  *
  * Contact:
  * GiWoong Kim <giwoong.kim@samsung.com>
@@ -10,7 +10,7 @@
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
  * as published by the Free Software Foundation; either version 2
- * of the License, or ( at your option ) any later version.
+ * of the License, or (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  */
 
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5 
+// 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: 2012.10.22 at 04:10:02 PM KST 
+// Generated on: 2013.07.10 at 07:19:41 PM KST 
 //
 
 
index b7dc41deaaffd3a145cb8e2958ed7e1378aa1552..169c15da1aed7faf9c9baf733f9951b9f949f939 100644 (file)
@@ -1,7 +1,7 @@
 /**
+ * XML Binding
  *
- *
- * Copyright ( C ) 2011 - 2012 Samsung Electronics Co., Ltd. All rights reserved.
+ * Copyright (C) 2011 - 2013 Samsung Electronics Co., Ltd. All rights reserved.
  *
  * Contact:
  * GiWoong Kim <giwoong.kim@samsung.com>
@@ -10,7 +10,7 @@
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
  * as published by the Free Software Foundation; either version 2
- * of the License, or ( at your option ) any later version.
+ * of the License, or (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  */
 
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5 
+// 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: 2012.10.22 at 04:10:02 PM KST 
+// Generated on: 2013.07.10 at 07:19:41 PM KST 
 //
 
 
index e34ec06568bdfa64efa7e0a14c141967c9dfbab4..f92f3594d5681b88c1f8337160ea5006e800e437 100644 (file)
@@ -1,7 +1,7 @@
 /**
+ * XML Binding
  *
- *
- * Copyright ( C ) 2011 - 2012 Samsung Electronics Co., Ltd. All rights reserved.
+ * Copyright (C) 2011 - 2013 Samsung Electronics Co., Ltd. All rights reserved.
  *
  * Contact:
  * GiWoong Kim <giwoong.kim@samsung.com>
@@ -10,7 +10,7 @@
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
  * as published by the Free Software Foundation; either version 2
- * of the License, or ( at your option ) any later version.
+ * of the License, or (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  */
 
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5 
+// 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: 2012.10.22 at 04:10:02 PM KST 
+// Generated on: 2013.07.10 at 07:19:41 PM KST 
 //
 
 
@@ -53,7 +53,7 @@ import javax.xml.bind.annotation.XmlType;
  *   &lt;complexContent>
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  *       &lt;sequence>
- *         &lt;element name="lcd" type="{http://www.tizen.org/emulator/skin/dbi}lcdType"/>
+ *         &lt;element name="display" type="{http://www.tizen.org/emulator/skin/dbi}displayType"/>
  *         &lt;element name="imageList" type="{http://www.tizen.org/emulator/skin/dbi}imageListType"/>
  *         &lt;element name="keyMapList" type="{http://www.tizen.org/emulator/skin/dbi}keyMapListType"/>
  *       &lt;/sequence>
@@ -67,14 +67,14 @@ import javax.xml.bind.annotation.XmlType;
  */
 @XmlAccessorType(XmlAccessType.FIELD)
 @XmlType(name = "rotationType", propOrder = {
-    "lcd",
+    "display",
     "imageList",
     "keyMapList"
 })
 public class RotationType {
 
     @XmlElement(required = true)
-    protected LcdType lcd;
+    protected DisplayType display;
     @XmlElement(required = true)
     protected ImageListType imageList;
     @XmlElement(required = true)
@@ -83,27 +83,27 @@ public class RotationType {
     protected RotationNameType name;
 
     /**
-     * Gets the value of the lcd property.
+     * Gets the value of the display property.
      * 
      * @return
      *     possible object is
-     *     {@link LcdType }
+     *     {@link DisplayType }
      *     
      */
-    public LcdType getLcd() {
-        return lcd;
+    public DisplayType getDisplay() {
+        return display;
     }
 
     /**
-     * Sets the value of the lcd property.
+     * Sets the value of the display property.
      * 
      * @param value
      *     allowed object is
-     *     {@link LcdType }
+     *     {@link DisplayType }
      *     
      */
-    public void setLcd(LcdType value) {
-        this.lcd = value;
+    public void setDisplay(DisplayType value) {
+        this.display = value;
     }
 
     /**
index 669f988b87e63138940f8152914cfb4677fb93b1..2440617c6274b8e3ab27f275ec6bd6f2c0274a39 100644 (file)
@@ -1,7 +1,7 @@
 /**
+ * XML Binding
  *
- *
- * Copyright ( C ) 2011 - 2012 Samsung Electronics Co., Ltd. All rights reserved.
+ * Copyright (C) 2011 - 2013 Samsung Electronics Co., Ltd. All rights reserved.
  *
  * Contact:
  * GiWoong Kim <giwoong.kim@samsung.com>
@@ -10,7 +10,7 @@
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
  * as published by the Free Software Foundation; either version 2
- * of the License, or ( at your option ) any later version.
+ * of the License, or (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  */
 
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5 
+// 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: 2012.10.22 at 04:10:02 PM KST 
+// Generated on: 2013.07.10 at 07:19:41 PM KST 
 //
 
 
index a037871257290c93e8e7ebf793c61e9f080e010c..bc87316451ecbcba0e9bd0514743525db2f7a106 100644 (file)
@@ -1,7 +1,7 @@
 /**
+ * XML Binding
  *
- *
- * Copyright ( C ) 2011 - 2012 Samsung Electronics Co., Ltd. All rights reserved.
+ * Copyright (C) 2011 - 2013 Samsung Electronics Co., Ltd. All rights reserved.
  *
  * Contact:
  * GiWoong Kim <giwoong.kim@samsung.com>
@@ -10,7 +10,7 @@
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
  * as published by the Free Software Foundation; either version 2
- * of the License, or ( at your option ) any later version.
+ * of the License, or (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  */
 
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5 
+// 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: 2012.10.22 at 04:10:02 PM KST 
+// Generated on: 2013.07.10 at 07:19:41 PM KST 
 //
 
 @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.tizen.org/emulator/skin/dbi", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
index 418f4436919a18875a71a3522297bb83ba26a0a2..2e17180b15f369c0e3f4d7e3015ddee536afe6b6 100644 (file)
@@ -1,11 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <EmulatorUI xmlns="http://www.tizen.org/emulator/skin/dbi" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
-    <dbi version="2.0"/>
+    <dbi_version>2.2</dbi_version>
     <rotations>
         <rotation name="Portrait">
-            <lcd id="0">
+            <display id="0">
                 <region left="26" top="70" width="320" height="480"/>
-            </lcd>
+            </display>
             <imageList>
                 <mainImage>default_0.png</mainImage>
                 <keyPressedImage>default_0_p.png</keyPressedImage>
@@ -46,9 +46,9 @@
             </keyMapList>
         </rotation>
         <rotation name="Landscape">
-            <lcd id="0">
+            <display id="0">
                 <region left="70" top="34" width="480" height="320"/>
-            </lcd>
+            </display>
             <imageList>
                 <mainImage>default_L90.png</mainImage>
                 <keyPressedImage>default_L90_p.png</keyPressedImage>
@@ -89,9 +89,9 @@
             </keyMapList>
         </rotation>
         <rotation name="Reverse Portrait">
-            <lcd id="0">
+            <display id="0">
                 <region left="34" top="70" width="320" height="480"/>
-            </lcd>
+            </display>
             <imageList>
                 <mainImage>default_180.png</mainImage>
                 <keyPressedImage>default_180_p.png</keyPressedImage>
             </keyMapList>
         </rotation>
         <rotation name="Reverse Landscape">
-            <lcd id="0">
+            <display id="0">
                 <region left="70" top="26" width="480" height="320"/>
-            </lcd>
+            </display>
             <imageList>
                 <mainImage>default_R90.png</mainImage>
                 <keyPressedImage>default_R90_p.png</keyPressedImage>
             </keyMapList>
         </rotation>
     </rotations>
-    <colors>
-        <hoverColor B="255" G="255" R="255" />
-    </colors>
+    <hover>
+        <color B="255" G="255" R="255" />
+    </hover>
 </EmulatorUI>
index 0a9dfee3ed87e5fa09360e5bc4a1f9454f1be047..03dff1a06891078ede0dfba89390d79ab31d96e0 100644 (file)
@@ -1,11 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <EmulatorUI xmlns="http://www.tizen.org/emulator/skin/dbi" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
-    <dbi version="2.0"/>
+    <dbi_version>2.2</dbi_version>
     <rotations>
         <rotation name="Portrait">
-            <lcd id="0">
+            <display id="0">
                 <region left="35" top="86" width="480" height="800"/>
-            </lcd>
+            </display>
             <imageList>
                 <mainImage>default_0.png</mainImage>
                 <keyPressedImage>default_0_p.png</keyPressedImage>
@@ -62,9 +62,9 @@
             </keyMapList>
         </rotation>
         <rotation name="Landscape">
-            <lcd id="0">
+            <display id="0">
                 <region height="480" left="86" top="46" width="800"/>
-            </lcd>
+            </display>
             <imageList>
                 <mainImage>default_L90.png</mainImage>
                 <keyPressedImage>default_L90_p.png</keyPressedImage>
             </keyMapList>
         </rotation>
         <rotation name="Reverse Portrait">
-            <lcd id="0">
+            <display id="0">
                 <region left="46" top="89" width="480" height="800"/>
-            </lcd>
+            </display>
             <imageList>
                 <mainImage>default_180.png</mainImage>
                 <keyPressedImage>default_180_p.png</keyPressedImage>
             </keyMapList>
         </rotation>
         <rotation name="Reverse Landscape">
-            <lcd id="0">
+            <display id="0">
                 <region left="90" top="35" width="800" height="480"/>
-            </lcd>
+            </display>
             <imageList>
                 <mainImage>default_R90.png</mainImage>
                 <keyPressedImage>default_R90_p.png</keyPressedImage>
             </keyMapList>
         </rotation>
     </rotations>
-    <colors>
-        <hoverColor B="255" G="255" R="255" />
-    </colors>
+    <hover>
+        <color B="255" G="255" R="255" />
+    </hover>
 </EmulatorUI>
index 34bd212222fcf1121d8d7cd5fbbdce638c5b2de0..5459bec7d61e009256eacf070628873f98ce4502 100644 (file)
@@ -1,11 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <EmulatorUI xmlns="http://www.tizen.org/emulator/skin/dbi" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
-    <dbi version="2.0"/>
+    <dbi_version>2.2</dbi_version>
     <rotations>
         <rotation name="Portrait">
-            <lcd id="0">
+            <display id="0">
                 <region left="35" top="86" width="480" height="800"/>
-            </lcd>
+            </display>
             <imageList>
                 <mainImage>default_0.png</mainImage>
                 <keyPressedImage>default_0_p.png</keyPressedImage>
@@ -46,9 +46,9 @@
             </keyMapList>
         </rotation>
         <rotation name="Landscape">
-            <lcd id="0">
+            <display id="0">
                 <region left="86" top="46" width="800" height="480"/>
-            </lcd>
+            </display>
             <imageList>
                 <mainImage>default_L90.png</mainImage>
                 <keyPressedImage>default_L90_p.png</keyPressedImage>
@@ -89,9 +89,9 @@
             </keyMapList>
         </rotation>
         <rotation name="Reverse Portrait">
-            <lcd id="0">
+            <display id="0">
                 <region left="46" top="89" width="480" height="800"/>
-            </lcd>
+            </display>
             <imageList>
                 <mainImage>default_180.png</mainImage>
                 <keyPressedImage>default_180_p.png</keyPressedImage>
             </keyMapList>
         </rotation>
         <rotation name="Reverse Landscape">
-            <lcd id="0">
+            <display id="0">
                 <region left="90" top="35" width="800" height="480"/>
-            </lcd>
+            </display>
             <imageList>
                 <mainImage>default_R90.png</mainImage>
                 <keyPressedImage>default_R90_p.png</keyPressedImage>
             </keyMapList>
         </rotation>
     </rotations>
-    <colors>
-        <hoverColor B="255" G="255" R="255" />
-    </colors>
+    <hover>
+        <color B="255" G="255" R="255" />
+    </hover>
 </EmulatorUI>
index c2b2b0dd09aedb51706e8f437019075d9cff6a68..be34f736bbbfc77c615cf5a208d51176fc2ab3af 100644 (file)
@@ -1,11 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <EmulatorUI xmlns="http://www.tizen.org/emulator/skin/dbi" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
-    <dbi version="2.0"/>
+    <dbi_version>2.2</dbi_version>
     <rotations>
         <rotation name="Portrait">
-            <lcd id="0">
+            <display id="0">
                 <region left="52" top="109" width="600" height="1024"/>
-            </lcd>
+            </display>
             <imageList>
                 <mainImage>default_0.png</mainImage>
                 <keyPressedImage>default_0_p.png</keyPressedImage>
@@ -46,9 +46,9 @@
             </keyMapList>
         </rotation>
         <rotation name="Landscape">
-            <lcd id="0">
+            <display id="0">
                 <region left="109" top="62" width="1024" height="600"/>
-            </lcd>
+            </display>
             <imageList>
                 <mainImage>default_L90.png</mainImage>
                 <keyPressedImage>default_L90_p.png</keyPressedImage>
@@ -89,9 +89,9 @@
             </keyMapList>
         </rotation>
         <rotation name="Reverse Portrait">
-            <lcd id="0">
+            <display id="0">
                 <region left="62" top="113" width="600" height="1024"/>
-            </lcd>
+            </display>
             <imageList>
                 <mainImage>default_180.png</mainImage>
                 <keyPressedImage>default_180_p.png</keyPressedImage>
             </keyMapList>
         </rotation>
         <rotation name="Reverse Landscape">
-            <lcd id="0">
+            <display id="0">
                 <region left="113" top="52" width="1024" height="600"/>
-            </lcd>
+            </display>
             <imageList>
                 <mainImage>default_R90.png</mainImage>
                 <keyPressedImage>default_R90_p.png</keyPressedImage>
             </keyMapList>
         </rotation>
     </rotations>
-    <colors>
-        <hoverColor B="255" G="255" R="255" />
-    </colors>
+    <hover>
+        <color B="255" G="255" R="255" />
+    </hover>
 </EmulatorUI>
index 0305f5237f8fbde582551b1dac7f1f2d130a1d9a..54dab56d0fcd300aaf00a2edc4a95013ffcbd5fa 100644 (file)
@@ -1,11 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <EmulatorUI xmlns="http://www.tizen.org/emulator/skin/dbi" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
-    <dbi version="2.0"/>
+    <dbi_version>2.2</dbi_version>
     <rotations>
         <rotation name="Portrait">
-            <lcd id="0">
+            <display id="0">
                 <region left="67" top="116" width="720" height="1280"/>
-            </lcd>
+            </display>
             <imageList>
                 <mainImage>default_0.png</mainImage>
                 <keyPressedImage>default_0_p.png</keyPressedImage>
@@ -62,9 +62,9 @@
             </keyMapList>
         </rotation>
         <rotation name="Landscape">
-            <lcd id="0">
+            <display id="0">
                 <region left="116" top="78" width="1280" height="720"/>
-            </lcd>
+            </display>
             <imageList>
                 <mainImage>default_L90.png</mainImage>
                 <keyPressedImage>default_L90_p.png</keyPressedImage>
             </keyMapList>
         </rotation>
         <rotation name="Reverse Portrait">
-            <lcd id="0">
+            <display id="0">
                 <region left="78" top="117" width="720" height="1280"/>
-            </lcd>
+            </display>
             <imageList>
                 <mainImage>default_180.png</mainImage>
                 <keyPressedImage>default_180_p.png</keyPressedImage>
             </keyMapList>
         </rotation>
         <rotation name="Reverse Landscape">
-            <lcd id="0">
+            <display id="0">
                 <region left="117" top="67" width="1280" height="720"/>
-            </lcd>
+            </display>
             <imageList>
                 <mainImage>default_R90.png</mainImage>
                 <keyPressedImage>default_R90_p.png</keyPressedImage>
             </keyMapList>
         </rotation>
     </rotations>
-    <colors>
-        <hoverColor B="255" G="255" R="255" />
-    </colors>
+    <hover>
+        <color B="255" G="255" R="255" />
+    </hover>
 </EmulatorUI>
index aa0c011a5c4b2fe1c92633694738d74235746f0a..775d9aaad9782d2f86adfa13fcf0a3a50bf5fd2d 100644 (file)
@@ -1,11 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <EmulatorUI xmlns="http://www.tizen.org/emulator/skin/dbi" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
-    <dbi version="2.0"/>
+    <dbi_version>2.2</dbi_version>
     <rotations>
         <rotation name="Portrait">
-            <lcd id="0">
+            <display id="0">
                 <region left="67" top="116" width="720" height="1280"/>
-            </lcd>
+            </display>
             <imageList>
                 <mainImage>default_0.png</mainImage>
                 <keyPressedImage>default_0_p.png</keyPressedImage>
@@ -46,9 +46,9 @@
             </keyMapList>
         </rotation>
         <rotation name="Landscape">
-            <lcd id="0">
+            <display id="0">
                 <region left="116" top="78" width="1280" height="720"/>
-            </lcd>
+            </display>
             <imageList>
                 <mainImage>default_L90.png</mainImage>
                 <keyPressedImage>default_L90_p.png</keyPressedImage>
@@ -89,9 +89,9 @@
             </keyMapList>
         </rotation>
         <rotation name="Reverse Portrait">
-            <lcd id="0">
+            <display id="0">
                 <region left="78" top="117" width="720" height="1280"/>
-            </lcd>
+            </display>
             <imageList>
                 <mainImage>default_180.png</mainImage>
                 <keyPressedImage>default_180_p.png</keyPressedImage>
             </keyMapList>
         </rotation>
         <rotation name="Reverse Landscape">
-            <lcd id="0">
+            <display id="0">
                 <region left="117" top="67" width="1280" height="720"/>
-            </lcd>
+            </display>
             <imageList>
                 <mainImage>default_R90.png</mainImage>
                 <keyPressedImage>default_R90_p.png</keyPressedImage>
             </keyMapList>
         </rotation>
     </rotations>
-    <colors>
-        <hoverColor B="255" G="255" R="255" />
-    </colors>
+    <hover>
+        <color B="255" G="255" R="255" />
+    </hover>
 </EmulatorUI>
index d1a68bc5d60cd5c0d54b0999e0bf40906dea3e75..af20536742b22a581370c45e3ee3a81f47d0cf4a 100644 (file)
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <EmulatorUI xmlns="http://www.tizen.org/emulator/skin/dbi" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
-    <dbi version="2.0"/>
+    <dbi_version>2.2</dbi_version>
     <rotations>
         <rotation name="Portrait">
-            <lcd id="0">
-            </lcd>
+            <display id="0">
+            </display>
             <keyMapList>
                 <keyMap>
                     <eventInfo>
             </keyMapList>
         </rotation>
         <rotation name="Landscape">
-            <lcd id="0">
-            </lcd>
+            <display id="0">
+            </display>
         </rotation>
         <rotation name="Reverse Portrait">
-            <lcd id="0">
-            </lcd>
+            <display id="0">
+            </display>
         </rotation>
         <rotation name="Reverse Landscape">
-            <lcd id="0">
-            </lcd>
+            <display id="0">
+            </display>
         </rotation>
     </rotations>
-    <colors>
-        <hoverColor B="255" G="255" R="255" />
-    </colors>
+    <hover>
+        <color B="255" G="255" R="255" />
+    </hover>
 </EmulatorUI>
index 82cee6484f086130a326208087004a6dcc53e2b0..51b528d381ab80990e2750cdfd38f439bfa77d9a 100644 (file)
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <EmulatorUI xmlns="http://www.tizen.org/emulator/skin/dbi" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
-    <dbi version="2.0"/>
+    <dbi_version>2.2</dbi_version>
     <rotations>
         <rotation name="Portrait">
-            <lcd id="0">
-            </lcd>
+            <display id="0">
+            </display>
             <keyMapList>
                 <keyMap>
                     <eventInfo>
             </keyMapList>
         </rotation>
         <rotation name="Landscape">
-            <lcd id="0">
-            </lcd>
+            <display id="0">
+            </display>
         </rotation>
         <rotation name="Reverse Portrait">
-            <lcd id="0">
-            </lcd>
+            <display id="0">
+            </display>
         </rotation>
         <rotation name="Reverse Landscape">
-            <lcd id="0">
-            </lcd>
+            <display id="0">
+            </display>
         </rotation>
     </rotations>
     <colors>
index 44ac1c343d1db2320f21db4c20071f5c50cb25a9..7165eb5435658d121d7167c90407449b899e4f9f 100644 (file)
@@ -80,7 +80,7 @@ import org.tizen.emulator.skin.config.EmulatorConfig.SkinPropertiesConstants;
 import org.tizen.emulator.skin.custom.ColorTag;
 import org.tizen.emulator.skin.custom.CustomProgressBar;
 import org.tizen.emulator.skin.custom.KeyWindow;
-import org.tizen.emulator.skin.dbi.ColorsType;
+import org.tizen.emulator.skin.dbi.HoverType;
 import org.tizen.emulator.skin.dbi.KeyMapType;
 import org.tizen.emulator.skin.dbi.RgbType;
 import org.tizen.emulator.skin.dbi.RotationType;
@@ -317,10 +317,10 @@ public class EmulatorSkin {
 //     }
 
        private Color loadHoverColor() {
-               ColorsType colors = config.getDbiContents().getColors();
+               HoverType hover = config.getDbiContents().getHover();
 
-               if (null != colors) {
-                       RgbType hoverRgb = colors.getHoverColor();
+               if (null != hover) {
+                       RgbType hoverRgb = hover.getColor();
                        if (null != hoverRgb) {
                                Long r = hoverRgb.getR();
                                Long g = hoverRgb.getG();
index 593bfe4eadce856025bbc1cfb334d9f75d45751c..c01f4835ab6aa9ec5e24d1362498ae70f3cb76d1 100644 (file)
@@ -215,6 +215,7 @@ public class EmulatorSkinMain {
 
                                System.exit(-1);
                        }
+                       logger.info("dbi version : " + dbiContents.getDbiVersion());
 
                        /* collect configurations */
                        EmulatorConfig config = new EmulatorConfig(argsMap,
index 2787e481b32d352e94c704178edcf36fa7f7c264..44210638417e3d9c6fdbc75b0cbdae0a5422ca72 100644 (file)
@@ -52,13 +52,12 @@ import org.tizen.emulator.skin.EmulatorSkinState;
 import org.tizen.emulator.skin.comm.ICommunicator.KeyEventType;
 import org.tizen.emulator.skin.comm.ICommunicator.SendCommand;
 import org.tizen.emulator.skin.comm.sock.SocketCommunicator;
-import org.tizen.emulator.skin.comm.sock.data.DisplayStateData;
 import org.tizen.emulator.skin.comm.sock.data.KeyEventData;
 import org.tizen.emulator.skin.config.EmulatorConfig;
 import org.tizen.emulator.skin.config.EmulatorConfig.ArgsConstants;
 import org.tizen.emulator.skin.config.EmulatorConfig.SkinPropertiesConstants;
 import org.tizen.emulator.skin.custom.CustomProgressBar;
-import org.tizen.emulator.skin.dbi.LcdType;
+import org.tizen.emulator.skin.dbi.DisplayType;
 import org.tizen.emulator.skin.dbi.RegionType;
 import org.tizen.emulator.skin.dbi.RotationType;
 import org.tizen.emulator.skin.image.ImageRegistry;
@@ -248,7 +247,7 @@ public class PhoneShapeSkinComposer implements ISkinComposer {
                float convertedScale = SkinUtil.convertScale(scale);
                RotationType rotation = SkinRotation.getRotation(rotationId);
 
-               LcdType lcd = rotation.getLcd(); /* from dbi */
+               DisplayType lcd = rotation.getDisplay(); /* from dbi */
                if (lcd == null) {
                        return null;
                }
index 23768251880260cbfc93679d2d19817733f83173..4da68af19b2548b24cf83df9ac890c05ea1507ff 100644 (file)
@@ -5,8 +5,9 @@ xmlns:dbi="http://www.tizen.org/emulator/skin/dbi" elementFormDefault="qualified
        <element name="EmulatorUI" >
                <complexType>
                        <all>
-                               <element name = "rotations" type="dbi:rotationsType" minOccurs="1" maxOccurs="1"></element>
-                               <element name = "colors" type="dbi:colorsType" minOccurs="0" maxOccurs="1"></element>
+                               <element name="dbi_version" type="float" minOccurs="1" 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>
                        </all>
                </complexType>
        </element>
@@ -19,7 +20,7 @@ xmlns:dbi="http://www.tizen.org/emulator/skin/dbi" elementFormDefault="qualified
 
        <complexType name="rotationType">
                <sequence>
-                       <element name="lcd" type="dbi:lcdType" minOccurs="1" maxOccurs="1"></element>
+                       <element name="display" type="dbi:displayType" minOccurs="1" maxOccurs="1"></element>
                        <element name="imageList" type="dbi:imageListType" minOccurs="1" maxOccurs="1" ></element>
                        <element name="keyMapList" type="dbi:keyMapListType" minOccurs="1" maxOccurs="1" ></element>
                </sequence>
@@ -42,7 +43,7 @@ xmlns:dbi="http://www.tizen.org/emulator/skin/dbi" elementFormDefault="qualified
                </all>
        </complexType>
 
-       <complexType name="lcdType">
+       <complexType name="displayType">
                <all>
                        <element name="region" type="dbi:regionType" minOccurs="1" maxOccurs="1"></element>
                </all>
@@ -77,9 +78,9 @@ xmlns:dbi="http://www.tizen.org/emulator/skin/dbi" elementFormDefault="qualified
                <attribute name="height" type="int" ></attribute>
        </complexType>
 
-       <complexType name="colorsType">
+       <complexType name="hoverType">
                <all>
-                       <element name="hoverColor" type="dbi:rgbType" minOccurs="0" maxOccurs="1"></element>
+                       <element name="color" type="dbi:rgbType" minOccurs="0" maxOccurs="1"></element>
                </all>
        </complexType>