It would be nice to be able to create barebones xsd files from the tags loaded in the workspace.
I work with Java-class defining XSD where the tags are polluted and dispersed and look like this :
<xs:complexType name="Foo">
<xs:annotation>
<xs:documentation></xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Bar" type="Bar" minOccurs="1" maxOccurs="10">
<xs:annotation>
<xs:documentation></xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute name="schemaVersion" use="required" fixed="1.0"/>
</xs:complexType>
And I would like to generate an XSD file that looks like this:
<Foo>
<Bar>
</Bar>
</Foo>
Thank you
It would be nice to be able to create barebones xsd files from the tags loaded in the workspace.
I work with Java-class defining XSD where the tags are polluted and dispersed and look like this :
And I would like to generate an XSD file that looks like this:
Thank you