My favorites
▼
|
Sign in
polyglottos
code generation tool
Project Home
Downloads
Issues
Source
Checkout
Browse
Changes
Source path:
svn
/
trunk
/
demomodel
/
library.xsd
r42
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?xml version="1.0" encoding="utf-8"?>
<xs:schema id="library"
targetNamespace="http://polyglottos.googlecode.com/svn/trunk/demomodel/library.xsd"
elementFormDefault="qualified"
xmlns="http://polyglottos.googlecode.com/svn/trunk/demomodel/library.xsd"
xmlns:mstns="http://polyglottos.googlecode.com/svn/trunk/demomodel/library.xsd"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
>
<xs:element name="library" type="Library">
</xs:element>
<xs:complexType name="Library">
<xs:sequence>
<xs:element name="book" type="Book" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
<xs:attribute name="id" type="xs:string" use="required" />
</xs:complexType>
<xs:complexType name="Book">
<xs:sequence>
<xs:element name="author" type="Author" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="summary" type="xs:string" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
<xs:attribute name="name" type="xs:string" use="required" />
</xs:complexType>
<xs:complexType name="Author">
<xs:attribute name="name" type="xs:string" use="required" />
</xs:complexType>
</xs:schema>
Show details
Hide details
Change log
r27
by pavel.savara on Dec 30, 2011
Diff
xsd-> fluent
Go to:
/trunk/demomodel/Author.gen.cs
/trunk/demomodel/Book.gen.cs
/trunk/demomodel/Employee.gen.cs
/trunk/demomodel/Library.gen.cs
/trunk/demomodel/XDocument.gen.cs
/trunk/demomodel/demomodel.csproj
/trunk/demomodel/library.xsd
...tos.test/polyglottos.test.csproj
...lyglottos.test/src/Fluentator.cs
...ottos.test/src/FluentatorTest.cs
...lottos.test/src/XSDFluentator.cs
Project members,
sign in
to write a code review
Older revisions
All revisions of this file
File info
Size: 1181 bytes, 31 lines
View raw file
Powered by
Google Project Hosting