You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by am...@apache.org on 2007/11/28 10:26:50 UTC

svn commit: r598925 - /webservices/axis2/trunk/java/modules/adb-codegen/test-resources/testsuite/complexExtension.xsd

Author: amilas
Date: Wed Nov 28 01:26:50 2007
New Revision: 598925

URL: http://svn.apache.org/viewvc?rev=598925&view=rev
Log:
adding a missing file

Added:
    webservices/axis2/trunk/java/modules/adb-codegen/test-resources/testsuite/complexExtension.xsd

Added: webservices/axis2/trunk/java/modules/adb-codegen/test-resources/testsuite/complexExtension.xsd
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/adb-codegen/test-resources/testsuite/complexExtension.xsd?rev=598925&view=auto
==============================================================================
--- webservices/axis2/trunk/java/modules/adb-codegen/test-resources/testsuite/complexExtension.xsd (added)
+++ webservices/axis2/trunk/java/modules/adb-codegen/test-resources/testsuite/complexExtension.xsd Wed Nov 28 01:26:50 2007
@@ -0,0 +1,38 @@
+<!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements. See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership. The ASF licenses this file
+  ~ to you under the Apache License, Version 2.0 (the
+  ~ "License"); you may not use this file except in compliance
+  ~ with the License. You may obtain a copy of the License at
+  ~
+  ~ http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing,
+  ~ software distributed under the License is distributed on an
+  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  ~ KIND, either express or implied. See the License for the
+  ~ specific language governing permissions and limitations
+  ~ under the License.
+  -->
+<xs:schema elementFormDefault="qualified"
+           xmlns:xs="http://www.w3.org/2001/XMLSchema"
+           xmlns:tns="http://tempuri.org/complexextension"
+           targetNamespace="http://tempuri.org/complexextension">
+
+    <xs:complexType name="ParentType">
+        <xs:attribute name="param1" type="xs:string"/>
+    </xs:complexType>
+    <xs:complexType name="ChildType">
+        <xs:complexContent>
+            <xs:extension base="tns:ParentType">
+                <xs:choice>
+                    <xs:element name="param2" type="xs:string"/>
+                    <xs:element name="param3" type="xs:int"/>
+                </xs:choice>
+            </xs:extension>
+        </xs:complexContent>
+    </xs:complexType>
+    <xs:element name="TestChildElement" type="tns:ChildType"/>
+</xs:schema>



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org