From 1f0de49cbd279bee42be069c4bd53225faab215c Mon Sep 17 00:00:00 2001 From: antelder Date: Wed, 29 Sep 2010 07:10:57 +0000 Subject: TUSCANY-3679: Apply changes to update sdo impl to use EMF v2.5. Thanks to Elio Damaggio and Florian Pinel for the work git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1002496 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/main/resources/CustomerAccount.xsd | 41 ++++++++ .../src/main/resources/InternalInElement.xsd | 31 ++++++ .../emf-2.5/tools-test/src/main/resources/Open.xsd | 33 +++++++ .../src/main/resources/extensible/customer.xsd | 47 +++++++++ .../src/main/resources/extensible/customers.xml | 39 ++++++++ .../src/main/resources/extensible/infostreet.xml | 24 +++++ .../src/main/resources/extensible/infostreet.xsd | 36 +++++++ .../src/main/resources/extensible/infozipcode.xml | 24 +++++ .../src/main/resources/extensible/infozipcode.xsd | 36 +++++++ .../src/main/resources/extensible/nonamespace.xsd | 25 +++++ .../tools-test/src/main/resources/listAccess.xsd | 53 +++++++++++ .../src/main/resources/mixedTypesStatic.xsd | 41 ++++++++ .../tools-test/src/main/resources/simple.xsd | 41 ++++++++ .../tools-test/src/main/resources/simpleNoIF.xsd | 41 ++++++++ .../tools-test/src/main/resources/simpleNoTns.xsd | 37 ++++++++ .../src/main/resources/simpleWithChangeSummary.xsd | 49 ++++++++++ .../tools-test/src/main/resources/subgroup.xsd | 48 ++++++++++ .../tools-test/src/main/resources/subgroup1.xml | 23 +++++ .../resources/substitutionWithExtensionValues.xsd | 105 +++++++++++++++++++++ .../resources/substitutionWithExtensionValues1.xml | 48 ++++++++++ .../resources/substitutionWithExtensionValues2.xsd | 62 ++++++++++++ .../src/main/resources/xsdImportOnly.wsdl | 55 +++++++++++ .../src/main/resources/xsdImportOnly_1.xsd | 37 ++++++++ .../tools-test/src/main/resources/xsdlistitem.xsd | 50 ++++++++++ 24 files changed, 1026 insertions(+) create mode 100644 sdo-java/branches/emf-2.5/tools-test/src/main/resources/CustomerAccount.xsd create mode 100644 sdo-java/branches/emf-2.5/tools-test/src/main/resources/InternalInElement.xsd create mode 100644 sdo-java/branches/emf-2.5/tools-test/src/main/resources/Open.xsd create mode 100644 sdo-java/branches/emf-2.5/tools-test/src/main/resources/extensible/customer.xsd create mode 100644 sdo-java/branches/emf-2.5/tools-test/src/main/resources/extensible/customers.xml create mode 100644 sdo-java/branches/emf-2.5/tools-test/src/main/resources/extensible/infostreet.xml create mode 100644 sdo-java/branches/emf-2.5/tools-test/src/main/resources/extensible/infostreet.xsd create mode 100644 sdo-java/branches/emf-2.5/tools-test/src/main/resources/extensible/infozipcode.xml create mode 100644 sdo-java/branches/emf-2.5/tools-test/src/main/resources/extensible/infozipcode.xsd create mode 100644 sdo-java/branches/emf-2.5/tools-test/src/main/resources/extensible/nonamespace.xsd create mode 100644 sdo-java/branches/emf-2.5/tools-test/src/main/resources/listAccess.xsd create mode 100644 sdo-java/branches/emf-2.5/tools-test/src/main/resources/mixedTypesStatic.xsd create mode 100644 sdo-java/branches/emf-2.5/tools-test/src/main/resources/simple.xsd create mode 100644 sdo-java/branches/emf-2.5/tools-test/src/main/resources/simpleNoIF.xsd create mode 100644 sdo-java/branches/emf-2.5/tools-test/src/main/resources/simpleNoTns.xsd create mode 100644 sdo-java/branches/emf-2.5/tools-test/src/main/resources/simpleWithChangeSummary.xsd create mode 100644 sdo-java/branches/emf-2.5/tools-test/src/main/resources/subgroup.xsd create mode 100644 sdo-java/branches/emf-2.5/tools-test/src/main/resources/subgroup1.xml create mode 100644 sdo-java/branches/emf-2.5/tools-test/src/main/resources/substitutionWithExtensionValues.xsd create mode 100644 sdo-java/branches/emf-2.5/tools-test/src/main/resources/substitutionWithExtensionValues1.xml create mode 100644 sdo-java/branches/emf-2.5/tools-test/src/main/resources/substitutionWithExtensionValues2.xsd create mode 100644 sdo-java/branches/emf-2.5/tools-test/src/main/resources/xsdImportOnly.wsdl create mode 100644 sdo-java/branches/emf-2.5/tools-test/src/main/resources/xsdImportOnly_1.xsd create mode 100644 sdo-java/branches/emf-2.5/tools-test/src/main/resources/xsdlistitem.xsd (limited to 'sdo-java/branches/emf-2.5/tools-test/src/main/resources') diff --git a/sdo-java/branches/emf-2.5/tools-test/src/main/resources/CustomerAccount.xsd b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/CustomerAccount.xsd new file mode 100644 index 0000000000..a720670e3b --- /dev/null +++ b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/CustomerAccount.xsd @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sdo-java/branches/emf-2.5/tools-test/src/main/resources/InternalInElement.xsd b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/InternalInElement.xsd new file mode 100644 index 0000000000..6144b1e117 --- /dev/null +++ b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/InternalInElement.xsd @@ -0,0 +1,31 @@ + + + + + + + + + + + + diff --git a/sdo-java/branches/emf-2.5/tools-test/src/main/resources/Open.xsd b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/Open.xsd new file mode 100644 index 0000000000..0f158e591a --- /dev/null +++ b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/Open.xsd @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + diff --git a/sdo-java/branches/emf-2.5/tools-test/src/main/resources/extensible/customer.xsd b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/extensible/customer.xsd new file mode 100644 index 0000000000..1a0531e040 --- /dev/null +++ b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/extensible/customer.xsd @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sdo-java/branches/emf-2.5/tools-test/src/main/resources/extensible/customers.xml b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/extensible/customers.xml new file mode 100644 index 0000000000..40558f6cf8 --- /dev/null +++ b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/extensible/customers.xml @@ -0,0 +1,39 @@ + + + + + Pat Walmsley + + 21043 + + 15465 + + + Priscilla Walmsley + 15466 + + 341 Duckworth Way + + + diff --git a/sdo-java/branches/emf-2.5/tools-test/src/main/resources/extensible/infostreet.xml b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/extensible/infostreet.xml new file mode 100644 index 0000000000..c57b0b98c1 --- /dev/null +++ b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/extensible/infostreet.xml @@ -0,0 +1,24 @@ + + + + 21043 Jones Way + diff --git a/sdo-java/branches/emf-2.5/tools-test/src/main/resources/extensible/infostreet.xsd b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/extensible/infostreet.xsd new file mode 100644 index 0000000000..4b71628c89 --- /dev/null +++ b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/extensible/infostreet.xsd @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + diff --git a/sdo-java/branches/emf-2.5/tools-test/src/main/resources/extensible/infozipcode.xml b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/extensible/infozipcode.xml new file mode 100644 index 0000000000..a5f551908a --- /dev/null +++ b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/extensible/infozipcode.xml @@ -0,0 +1,24 @@ + + + + 21043 + diff --git a/sdo-java/branches/emf-2.5/tools-test/src/main/resources/extensible/infozipcode.xsd b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/extensible/infozipcode.xsd new file mode 100644 index 0000000000..cd1c55c138 --- /dev/null +++ b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/extensible/infozipcode.xsd @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + diff --git a/sdo-java/branches/emf-2.5/tools-test/src/main/resources/extensible/nonamespace.xsd b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/extensible/nonamespace.xsd new file mode 100644 index 0000000000..b551c8aae2 --- /dev/null +++ b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/extensible/nonamespace.xsd @@ -0,0 +1,25 @@ + + + + + + diff --git a/sdo-java/branches/emf-2.5/tools-test/src/main/resources/listAccess.xsd b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/listAccess.xsd new file mode 100644 index 0000000000..917ce78f8a --- /dev/null +++ b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/listAccess.xsd @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sdo-java/branches/emf-2.5/tools-test/src/main/resources/mixedTypesStatic.xsd b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/mixedTypesStatic.xsd new file mode 100644 index 0000000000..436c1ec9a4 --- /dev/null +++ b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/mixedTypesStatic.xsd @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sdo-java/branches/emf-2.5/tools-test/src/main/resources/simple.xsd b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/simple.xsd new file mode 100644 index 0000000000..aff9f9c5bf --- /dev/null +++ b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/simple.xsd @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sdo-java/branches/emf-2.5/tools-test/src/main/resources/simpleNoIF.xsd b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/simpleNoIF.xsd new file mode 100644 index 0000000000..aff9f9c5bf --- /dev/null +++ b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/simpleNoIF.xsd @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sdo-java/branches/emf-2.5/tools-test/src/main/resources/simpleNoTns.xsd b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/simpleNoTns.xsd new file mode 100644 index 0000000000..4702f57251 --- /dev/null +++ b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/simpleNoTns.xsd @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + diff --git a/sdo-java/branches/emf-2.5/tools-test/src/main/resources/simpleWithChangeSummary.xsd b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/simpleWithChangeSummary.xsd new file mode 100644 index 0000000000..c81e10ee00 --- /dev/null +++ b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/simpleWithChangeSummary.xsd @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sdo-java/branches/emf-2.5/tools-test/src/main/resources/subgroup.xsd b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/subgroup.xsd new file mode 100644 index 0000000000..61e0642dfa --- /dev/null +++ b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/subgroup.xsd @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sdo-java/branches/emf-2.5/tools-test/src/main/resources/subgroup1.xml b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/subgroup1.xml new file mode 100644 index 0000000000..007aef9aa3 --- /dev/null +++ b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/subgroup1.xml @@ -0,0 +1,23 @@ + + + + thisIsElB + + diff --git a/sdo-java/branches/emf-2.5/tools-test/src/main/resources/substitutionWithExtensionValues.xsd b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/substitutionWithExtensionValues.xsd new file mode 100644 index 0000000000..72474a62eb --- /dev/null +++ b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/substitutionWithExtensionValues.xsd @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sdo-java/branches/emf-2.5/tools-test/src/main/resources/substitutionWithExtensionValues1.xml b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/substitutionWithExtensionValues1.xml new file mode 100644 index 0000000000..45c592a333 --- /dev/null +++ b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/substitutionWithExtensionValues1.xml @@ -0,0 +1,48 @@ + + + + ZZZZZZZZZZZZZZZZZZZZ + + 00000000000000000000 + + 11111111111111111111 + name1 + 1 + + + 22222222222222222222 + myName2 + 2 + + comment0 + + + AAAAAAAAAAAAAAAAAAAA + + BBBBBBBBBBBBBBBBBBBB + myNameB + 11 + + commentA + + + commentZZZZZZZZZZZZZZZZZZ + + diff --git a/sdo-java/branches/emf-2.5/tools-test/src/main/resources/substitutionWithExtensionValues2.xsd b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/substitutionWithExtensionValues2.xsd new file mode 100644 index 0000000000..769cce4f65 --- /dev/null +++ b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/substitutionWithExtensionValues2.xsd @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sdo-java/branches/emf-2.5/tools-test/src/main/resources/xsdImportOnly.wsdl b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/xsdImportOnly.wsdl new file mode 100644 index 0000000000..576997a0a4 --- /dev/null +++ b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/xsdImportOnly.wsdl @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sdo-java/branches/emf-2.5/tools-test/src/main/resources/xsdImportOnly_1.xsd b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/xsdImportOnly_1.xsd new file mode 100644 index 0000000000..a62c26d948 --- /dev/null +++ b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/xsdImportOnly_1.xsd @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sdo-java/branches/emf-2.5/tools-test/src/main/resources/xsdlistitem.xsd b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/xsdlistitem.xsd new file mode 100644 index 0000000000..e416efaa25 --- /dev/null +++ b/sdo-java/branches/emf-2.5/tools-test/src/main/resources/xsdlistitem.xsd @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file -- cgit v1.2.3