XSD Modeler Demonstration
Enter a small sample of XML Schema and click
"Generate" to see how Skeleton Crew can easily replace hours of hand coding XML
serialization code for reading and writing XML. XSD is a great tool for
specifying not just XML structure, but any Entity Relationship based structure,
like Object Oriented code. XSD Modeler helps you bridge the gap between XSD
definitions and software code.
The XML Modeler demo can be found here.
Example:
<?xml version="1.0" encoding="UTF-8" ?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:complexType name="two">
<xs:sequence>
<xs:element name="name" type="xs:string" />
<xs:element name="title" type="xs:string" />
</xs:sequence>
<xs:attribute name="id" type="xs:integer" />
</xs:complexType>
<xs:element name="Named" type="two" />
<xs:element name="Nested">
<xs:complexType>
<xs:sequence>
<xs:element name="name" type="xs:string" />
<xs:element name="title" type="xs:string" />
</xs:sequence>
<xs:attribute name="id" type="xs:integer" />
</xs:complexType>
</xs:element>
<xs:element name="Simple" type="xs:string" />
</xs:schema>
|
|
|
|