Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'examples/org.eclipse.emf.teneo.samples/src/org/eclipse/emf/teneo/samples/emf/elist/featuremap/model/featuremap.xsd')
-rw-r--r--examples/org.eclipse.emf.teneo.samples/src/org/eclipse/emf/teneo/samples/emf/elist/featuremap/model/featuremap.xsd51
1 files changed, 0 insertions, 51 deletions
diff --git a/examples/org.eclipse.emf.teneo.samples/src/org/eclipse/emf/teneo/samples/emf/elist/featuremap/model/featuremap.xsd b/examples/org.eclipse.emf.teneo.samples/src/org/eclipse/emf/teneo/samples/emf/elist/featuremap/model/featuremap.xsd
deleted file mode 100644
index b763a62f6..000000000
--- a/examples/org.eclipse.emf.teneo.samples/src/org/eclipse/emf/teneo/samples/emf/elist/featuremap/model/featuremap.xsd
+++ /dev/null
@@ -1,51 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<schema targetNamespace="http://www.eclipse.org/emf/teneo/store/test/emf/elist/featuremap"
- xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore"
- xmlns:this="http://www.eclipse.org/emf/teneo/store/test/emf/elist/featuremap"
- xmlns:xsd="http://www.w3.org/2001/XMLSchema"
- xmlns="http://www.w3.org/2001/XMLSchema">
-
- <complexType name="ProductType">
- <sequence>
- <element name="Name" type="ID"/>
- <choice minOccurs="0" maxOccurs="unbounded">
- <element name="Description" type="string"/>
- <element name="TranslatedDescription" type="xsd:IDREF" ecore:reference="this:TranslatedDescriptionType"/>
- </choice>
- <element name="ProductClassification" type="this:ProductClassification"/>
- <choice maxOccurs="unbounded">
- <element name="PriceByQuantity" type="this:PriceByQuantityType"/>
- <element name="PriceFromSupplier" type="xsd:IDREF" ecore:reference="this:SupplierPriceType"/>
- <element name="SimplePrice" type="double"/>
- </choice>
- </sequence>
- </complexType>
-
- <xsd:simpleType name="ProductClassification">
- <xsd:restriction base="string">
- <xsd:enumeration value="Normal"/>
- <xsd:enumeration value="Special"/>
- </xsd:restriction>
- </xsd:simpleType>
-
- <complexType name="TranslatedDescriptionType">
- <sequence>
- <element name="Description" type="string"/>
- <element name="Language" type="string"/>
- </sequence>
- </complexType>
-
- <complexType name="PriceByQuantityType">
- <sequence>
- <element name="Price" type="double"/>
- <element name="Quantity" type="double"/>
- </sequence>
- </complexType>
-
- <complexType name="SupplierPriceType">
- <sequence>
- <element name="Name" type="string"/>
- <element name="Price" type="double"/>
- </sequence>
- </complexType>
-</schema> \ No newline at end of file

Back to the top