From 3276ad8bfaa3e1aebc234fd4ae70c3ce17604587 Mon Sep 17 00:00:00 2001 From: "jihye424.kim" Date: Sun, 18 Oct 2015 15:40:14 +0900 Subject: [PATCH] VMProperty: add device template value and screen size value Change-Id: Ie0640528bf0182d3e95a76059bae804441b3ddb7 Signed-off-by: jihye424.kim --- .../manager/vms/xml/AdvancedOptionType.java | 2 +- .../manager/vms/xml/BaseInformationType.java | 30 ++++- .../tizen/emulator/manager/vms/xml/CpuType.java | 2 +- .../manager/vms/xml/DeviceTemplateType.java | 116 ++++++++++++++++++++ .../tizen/emulator/manager/vms/xml/DeviceType.java | 2 +- .../manager/vms/xml/DiskImageFormatType.java | 2 +- .../emulator/manager/vms/xml/DisplayType.java | 122 ++++++++++++++++++++- .../manager/vms/xml/EmulatorConfiguration.java | 2 +- .../manager/vms/xml/ExtendedOptionType.java | 2 +- .../emulator/manager/vms/xml/ObjectFactory.java | 18 ++- .../tizen/emulator/manager/vms/xml/OciType.java | 2 +- .../tizen/emulator/manager/vms/xml/OptionType.java | 2 +- .../tizen/emulator/manager/vms/xml/RamType.java | 2 +- .../tizen/emulator/manager/vms/xml/SkinType.java | 2 +- .../emulator/manager/vms/xml/SubOptionType.java | 2 +- .../tizen/emulator/manager/vms/xml/TouchType.java | 2 +- .../emulator/manager/vms/xml/UsabilityType.java | 2 +- .../emulator/manager/vms/xml/package-info.java | 2 +- xsd/em.xsd | 21 ++++ 19 files changed, 318 insertions(+), 17 deletions(-) create mode 100644 jaxb_src/org/tizen/emulator/manager/vms/xml/DeviceTemplateType.java diff --git a/jaxb_src/org/tizen/emulator/manager/vms/xml/AdvancedOptionType.java b/jaxb_src/org/tizen/emulator/manager/vms/xml/AdvancedOptionType.java index 3c4d507..b9e757b 100644 --- a/jaxb_src/org/tizen/emulator/manager/vms/xml/AdvancedOptionType.java +++ b/jaxb_src/org/tizen/emulator/manager/vms/xml/AdvancedOptionType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2015.08.07 at 02:46:44 PM KST +// Generated on: 2015.10.18 at 02:24:37 PM KST // diff --git a/jaxb_src/org/tizen/emulator/manager/vms/xml/BaseInformationType.java b/jaxb_src/org/tizen/emulator/manager/vms/xml/BaseInformationType.java index bd12faf..0d03ded 100644 --- a/jaxb_src/org/tizen/emulator/manager/vms/xml/BaseInformationType.java +++ b/jaxb_src/org/tizen/emulator/manager/vms/xml/BaseInformationType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2015.08.07 at 02:46:44 PM KST +// Generated on: 2015.10.18 at 02:24:37 PM KST // @@ -37,6 +37,7 @@ import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; * </simpleType> * </element> * <element name="platform" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> + * <element name="deviceTemplate" type="{http://www.tizen.org/em}deviceTemplateType"/> * <element name="diskImage"> * <complexType> * <complexContent> @@ -74,6 +75,7 @@ import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; "name", "architecture", "platform", + "deviceTemplate", "diskImage" }) public class BaseInformationType { @@ -85,6 +87,8 @@ public class BaseInformationType { protected String architecture; protected String platform; @XmlElement(required = true) + protected DeviceTemplateType deviceTemplate; + @XmlElement(required = true) protected BaseInformationType.DiskImage diskImage; /** @@ -160,6 +164,30 @@ public class BaseInformationType { } /** + * Gets the value of the deviceTemplate property. + * + * @return + * possible object is + * {@link DeviceTemplateType } + * + */ + public DeviceTemplateType getDeviceTemplate() { + return deviceTemplate; + } + + /** + * Sets the value of the deviceTemplate property. + * + * @param value + * allowed object is + * {@link DeviceTemplateType } + * + */ + public void setDeviceTemplate(DeviceTemplateType value) { + this.deviceTemplate = value; + } + + /** * Gets the value of the diskImage property. * * @return diff --git a/jaxb_src/org/tizen/emulator/manager/vms/xml/CpuType.java b/jaxb_src/org/tizen/emulator/manager/vms/xml/CpuType.java index 23e6fa2..7d85317 100644 --- a/jaxb_src/org/tizen/emulator/manager/vms/xml/CpuType.java +++ b/jaxb_src/org/tizen/emulator/manager/vms/xml/CpuType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2015.08.07 at 02:46:44 PM KST +// Generated on: 2015.10.18 at 02:24:37 PM KST // diff --git a/jaxb_src/org/tizen/emulator/manager/vms/xml/DeviceTemplateType.java b/jaxb_src/org/tizen/emulator/manager/vms/xml/DeviceTemplateType.java new file mode 100644 index 0000000..42d5e96 --- /dev/null +++ b/jaxb_src/org/tizen/emulator/manager/vms/xml/DeviceTemplateType.java @@ -0,0 +1,116 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2015.10.18 at 02:24:37 PM KST +// + + +package org.tizen.emulator.manager.vms.xml; + +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; + + +/** + *

Java class for deviceTemplateType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="deviceTemplateType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="path" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *       <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *       <attribute name="version" use="required" type="{http://www.w3.org/2001/XMLSchema}double" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "deviceTemplateType", propOrder = { + "path" +}) +public class DeviceTemplateType { + + @XmlElement(required = true) + protected String path; + @XmlAttribute(name = "name", required = true) + protected String name; + @XmlAttribute(name = "version", required = true) + protected double version; + + /** + * Gets the value of the path property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPath() { + return path; + } + + /** + * Sets the value of the path property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPath(String value) { + this.path = value; + } + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the version property. + * + */ + public double getVersion() { + return version; + } + + /** + * Sets the value of the version property. + * + */ + public void setVersion(double value) { + this.version = value; + } + +} diff --git a/jaxb_src/org/tizen/emulator/manager/vms/xml/DeviceType.java b/jaxb_src/org/tizen/emulator/manager/vms/xml/DeviceType.java index 189c954..78b5cc1 100644 --- a/jaxb_src/org/tizen/emulator/manager/vms/xml/DeviceType.java +++ b/jaxb_src/org/tizen/emulator/manager/vms/xml/DeviceType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2015.08.07 at 02:46:44 PM KST +// Generated on: 2015.10.18 at 02:24:37 PM KST // diff --git a/jaxb_src/org/tizen/emulator/manager/vms/xml/DiskImageFormatType.java b/jaxb_src/org/tizen/emulator/manager/vms/xml/DiskImageFormatType.java index aabe725..cd6e727 100644 --- a/jaxb_src/org/tizen/emulator/manager/vms/xml/DiskImageFormatType.java +++ b/jaxb_src/org/tizen/emulator/manager/vms/xml/DiskImageFormatType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2015.08.07 at 02:46:44 PM KST +// Generated on: 2015.10.18 at 02:24:37 PM KST // diff --git a/jaxb_src/org/tizen/emulator/manager/vms/xml/DisplayType.java b/jaxb_src/org/tizen/emulator/manager/vms/xml/DisplayType.java index 31644f7..0326b96 100644 --- a/jaxb_src/org/tizen/emulator/manager/vms/xml/DisplayType.java +++ b/jaxb_src/org/tizen/emulator/manager/vms/xml/DisplayType.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2015.08.07 at 02:46:44 PM KST +// Generated on: 2015.10.18 at 02:24:37 PM KST // @@ -55,6 +55,22 @@ import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; * </simpleContent> * </complexType> * </element> + * <element name="screenSize"> + * <complexType> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <attribute name="unit" use="required"> + * <simpleType> + * <restriction base="{http://www.w3.org/2001/XMLSchema}token"> + * <enumeration value="inch"/> + * </restriction> + * </simpleType> + * </attribute> + * <attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}double" /> + * </restriction> + * </complexContent> + * </complexType> + * </element> * <element name="skinPath"> * <complexType> * <complexContent> @@ -78,6 +94,7 @@ import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; @XmlType(name = "displayType", propOrder = { "resolution", "density", + "screenSize", "skinPath" }) public class DisplayType { @@ -87,6 +104,8 @@ public class DisplayType { @XmlElement(required = true) protected DisplayType.Density density; @XmlElement(required = true) + protected DisplayType.ScreenSize screenSize; + @XmlElement(required = true) protected DisplayType.SkinPath skinPath; /** @@ -138,6 +157,30 @@ public class DisplayType { } /** + * Gets the value of the screenSize property. + * + * @return + * possible object is + * {@link DisplayType.ScreenSize } + * + */ + public DisplayType.ScreenSize getScreenSize() { + return screenSize; + } + + /** + * Sets the value of the screenSize property. + * + * @param value + * allowed object is + * {@link DisplayType.ScreenSize } + * + */ + public void setScreenSize(DisplayType.ScreenSize value) { + this.screenSize = value; + } + + /** * Gets the value of the skinPath property. * * @return @@ -314,6 +357,83 @@ public class DisplayType { * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <attribute name="unit" use="required"> + * <simpleType> + * <restriction base="{http://www.w3.org/2001/XMLSchema}token"> + * <enumeration value="inch"/> + * </restriction> + * </simpleType> + * </attribute> + * <attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}double" /> + * </restriction> + * </complexContent> + * </complexType> + * + * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "") + public static class ScreenSize { + + @XmlAttribute(name = "unit", required = true) + @XmlJavaTypeAdapter(CollapsedStringAdapter.class) + protected String unit; + @XmlAttribute(name = "value", required = true) + protected double value; + + /** + * Gets the value of the unit property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUnit() { + return unit; + } + + /** + * Sets the value of the unit property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUnit(String value) { + this.unit = value; + } + + /** + * Gets the value of the value property. + * + */ + public double getValue() { + return value; + } + + /** + * Sets the value of the value property. + * + */ + public void setValue(double value) { + this.value = value; + } + + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
      *       <sequence>
      *         <element name="path" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
      *       </sequence>
diff --git a/jaxb_src/org/tizen/emulator/manager/vms/xml/EmulatorConfiguration.java b/jaxb_src/org/tizen/emulator/manager/vms/xml/EmulatorConfiguration.java
index a252515..3174905 100644
--- a/jaxb_src/org/tizen/emulator/manager/vms/xml/EmulatorConfiguration.java
+++ b/jaxb_src/org/tizen/emulator/manager/vms/xml/EmulatorConfiguration.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 
 // See http://java.sun.com/xml/jaxb 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2015.08.07 at 02:46:44 PM KST 
+// Generated on: 2015.10.18 at 02:24:37 PM KST 
 //
 
 
diff --git a/jaxb_src/org/tizen/emulator/manager/vms/xml/ExtendedOptionType.java b/jaxb_src/org/tizen/emulator/manager/vms/xml/ExtendedOptionType.java
index 309a03d..fe751a7 100644
--- a/jaxb_src/org/tizen/emulator/manager/vms/xml/ExtendedOptionType.java
+++ b/jaxb_src/org/tizen/emulator/manager/vms/xml/ExtendedOptionType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 
 // See http://java.sun.com/xml/jaxb 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2015.08.07 at 02:46:44 PM KST 
+// Generated on: 2015.10.18 at 02:24:37 PM KST 
 //
 
 
diff --git a/jaxb_src/org/tizen/emulator/manager/vms/xml/ObjectFactory.java b/jaxb_src/org/tizen/emulator/manager/vms/xml/ObjectFactory.java
index a42f502..c7b9ea1 100644
--- a/jaxb_src/org/tizen/emulator/manager/vms/xml/ObjectFactory.java
+++ b/jaxb_src/org/tizen/emulator/manager/vms/xml/ObjectFactory.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 
 // See http://java.sun.com/xml/jaxb 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2015.08.07 at 02:46:44 PM KST 
+// Generated on: 2015.10.18 at 02:24:37 PM KST 
 //
 
 
@@ -125,6 +125,14 @@ public class ObjectFactory {
     }
 
     /**
+     * Create an instance of {@link DeviceTemplateType }
+     * 
+     */
+    public DeviceTemplateType createDeviceTemplateType() {
+        return new DeviceTemplateType();
+    }
+
+    /**
      * Create an instance of {@link DiskImageFormatType }
      * 
      */
@@ -181,6 +189,14 @@ public class ObjectFactory {
     }
 
     /**
+     * Create an instance of {@link DisplayType.ScreenSize }
+     * 
+     */
+    public DisplayType.ScreenSize createDisplayTypeScreenSize() {
+        return new DisplayType.ScreenSize();
+    }
+
+    /**
      * Create an instance of {@link DisplayType.SkinPath }
      * 
      */
diff --git a/jaxb_src/org/tizen/emulator/manager/vms/xml/OciType.java b/jaxb_src/org/tizen/emulator/manager/vms/xml/OciType.java
index b75fb96..f84313b 100644
--- a/jaxb_src/org/tizen/emulator/manager/vms/xml/OciType.java
+++ b/jaxb_src/org/tizen/emulator/manager/vms/xml/OciType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 
 // See http://java.sun.com/xml/jaxb 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2015.08.07 at 02:46:44 PM KST 
+// Generated on: 2015.10.18 at 02:24:37 PM KST 
 //
 
 
diff --git a/jaxb_src/org/tizen/emulator/manager/vms/xml/OptionType.java b/jaxb_src/org/tizen/emulator/manager/vms/xml/OptionType.java
index a0a88ce..68da3e0 100644
--- a/jaxb_src/org/tizen/emulator/manager/vms/xml/OptionType.java
+++ b/jaxb_src/org/tizen/emulator/manager/vms/xml/OptionType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 
 // See http://java.sun.com/xml/jaxb 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2015.08.07 at 02:46:44 PM KST 
+// Generated on: 2015.10.18 at 02:24:37 PM KST 
 //
 
 
diff --git a/jaxb_src/org/tizen/emulator/manager/vms/xml/RamType.java b/jaxb_src/org/tizen/emulator/manager/vms/xml/RamType.java
index c288796..6a9e214 100644
--- a/jaxb_src/org/tizen/emulator/manager/vms/xml/RamType.java
+++ b/jaxb_src/org/tizen/emulator/manager/vms/xml/RamType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 
 // See http://java.sun.com/xml/jaxb 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2015.08.07 at 02:46:44 PM KST 
+// Generated on: 2015.10.18 at 02:24:37 PM KST 
 //
 
 
diff --git a/jaxb_src/org/tizen/emulator/manager/vms/xml/SkinType.java b/jaxb_src/org/tizen/emulator/manager/vms/xml/SkinType.java
index a9d3b93..66dab8d 100644
--- a/jaxb_src/org/tizen/emulator/manager/vms/xml/SkinType.java
+++ b/jaxb_src/org/tizen/emulator/manager/vms/xml/SkinType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 
 // See http://java.sun.com/xml/jaxb 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2015.08.07 at 02:46:44 PM KST 
+// Generated on: 2015.10.18 at 02:24:37 PM KST 
 //
 
 
diff --git a/jaxb_src/org/tizen/emulator/manager/vms/xml/SubOptionType.java b/jaxb_src/org/tizen/emulator/manager/vms/xml/SubOptionType.java
index 5f14ed5..c3b0910 100644
--- a/jaxb_src/org/tizen/emulator/manager/vms/xml/SubOptionType.java
+++ b/jaxb_src/org/tizen/emulator/manager/vms/xml/SubOptionType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 
 // See http://java.sun.com/xml/jaxb 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2015.08.07 at 02:46:44 PM KST 
+// Generated on: 2015.10.18 at 02:24:37 PM KST 
 //
 
 
diff --git a/jaxb_src/org/tizen/emulator/manager/vms/xml/TouchType.java b/jaxb_src/org/tizen/emulator/manager/vms/xml/TouchType.java
index 42fe1f6..15caec3 100644
--- a/jaxb_src/org/tizen/emulator/manager/vms/xml/TouchType.java
+++ b/jaxb_src/org/tizen/emulator/manager/vms/xml/TouchType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 
 // See http://java.sun.com/xml/jaxb 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2015.08.07 at 02:46:44 PM KST 
+// Generated on: 2015.10.18 at 02:24:37 PM KST 
 //
 
 
diff --git a/jaxb_src/org/tizen/emulator/manager/vms/xml/UsabilityType.java b/jaxb_src/org/tizen/emulator/manager/vms/xml/UsabilityType.java
index 0e71c6d..e493402 100644
--- a/jaxb_src/org/tizen/emulator/manager/vms/xml/UsabilityType.java
+++ b/jaxb_src/org/tizen/emulator/manager/vms/xml/UsabilityType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 
 // See http://java.sun.com/xml/jaxb 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2015.08.07 at 02:46:44 PM KST 
+// Generated on: 2015.10.18 at 02:24:37 PM KST 
 //
 
 
diff --git a/jaxb_src/org/tizen/emulator/manager/vms/xml/package-info.java b/jaxb_src/org/tizen/emulator/manager/vms/xml/package-info.java
index 7c31d5c..bfa6527 100644
--- a/jaxb_src/org/tizen/emulator/manager/vms/xml/package-info.java
+++ b/jaxb_src/org/tizen/emulator/manager/vms/xml/package-info.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 
 // See http://java.sun.com/xml/jaxb 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2015.08.07 at 02:46:44 PM KST 
+// Generated on: 2015.10.18 at 02:24:37 PM KST 
 //
 
 @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.tizen.org/em", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
diff --git a/xsd/em.xsd b/xsd/em.xsd
index f483773..6526273 100644
--- a/xsd/em.xsd
+++ b/xsd/em.xsd
@@ -35,6 +35,7 @@
 				
 			
 			
+			
 			
 				
 					
@@ -61,6 +62,14 @@
 		
 	
 
+	
+		
+			
+		
+		
+		
+	
+
 	
 		
 			
@@ -193,6 +202,18 @@
 					
 				
 			
+			
+				
+					
+						
+							
+								
+							
+						
+					
+					
+				
+			
 			
 				
 					
-- 
2.7.4