diff options
Diffstat (limited to 'sandbox/kgoodson/SourceExplore/src')
-rw-r--r-- | sandbox/kgoodson/SourceExplore/src/main/resources/projects.xsd | 32 | ||||
-rw-r--r-- | sandbox/kgoodson/SourceExplore/src/main/resources/projects1.xml | 3 |
2 files changed, 34 insertions, 1 deletions
diff --git a/sandbox/kgoodson/SourceExplore/src/main/resources/projects.xsd b/sandbox/kgoodson/SourceExplore/src/main/resources/projects.xsd index 79f5c2d77c..bbdbd0414d 100644 --- a/sandbox/kgoodson/SourceExplore/src/main/resources/projects.xsd +++ b/sandbox/kgoodson/SourceExplore/src/main/resources/projects.xsd @@ -9,4 +9,34 @@ </choice> </complexType> </element> -</schema>
\ No newline at end of file + + <element name="projects2"> + <complexType> + <sequence maxOccurs="unbounded" minOccurs="0"> + <element name="project"> + <complexType> + <sequence maxOccurs="unbounded" minOccurs="0"> + <element name="package"><complexType></complexType></element> + </sequence> + <attribute name="name" type="string"></attribute> + </complexType> + </element> + </sequence> + </complexType> + </element> + + <complexType name="Package"> + <sequence> + <element name="file" type="tns:File" maxOccurs="unbounded" minOccurs="0"></element> + </sequence> + <attribute name="name" type="string"></attribute> + </complexType> + + <attribute name="NewAttribute" type="string"></attribute> + + + <complexType name="File"> + <attribute name="name" type="string"></attribute> + <attribute name="digest" type="string"></attribute> + </complexType> + </schema> diff --git a/sandbox/kgoodson/SourceExplore/src/main/resources/projects1.xml b/sandbox/kgoodson/SourceExplore/src/main/resources/projects1.xml new file mode 100644 index 0000000000..14672a9df7 --- /dev/null +++ b/sandbox/kgoodson/SourceExplore/src/main/resources/projects1.xml @@ -0,0 +1,3 @@ +<?xml version="1.0" encoding="UTF-8"?> +<tns:projects xmlns:tns="http://tuscany.apache.org/SourceExplore/projects" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://tuscany.apache.org/SourceExplore/projects projects.xsd "> +</tns:projects> |