-
Notifications
You must be signed in to change notification settings - Fork 1
/
wxclass.xsd
29 lines (29 loc) · 1.06 KB
/
wxclass.xsd
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
<?xml version="1.0" encoding="utf-8" ?>
<!--Created with Liquid XML Studio - FREE Community Edition 7.0.5.906 (http://www.liquid-technologies.com)-->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="class">
<xs:complexType>
<xs:choice maxOccurs="unbounded">
<xs:element name="classtext" type="xs:string" />
<xs:element name="function">
<xs:complexType>
<xs:sequence maxOccurs="unbounded">
<xs:element name="body" type="xs:string" />
</xs:sequence>
<xs:attribute name="Name" type="xs:string" />
<xs:attribute name="Parameters" type="xs:string" />
</xs:complexType>
</xs:element>
</xs:choice>
<xs:attribute name="Name" type="xs:string" />
</xs:complexType>
</xs:element>
<xs:element name="pythonfile">
<xs:complexType>
<xs:choice maxOccurs="unbounded">
<xs:element name="doctext" type="xs:string" />
<xs:element ref="class" />
</xs:choice>
</xs:complexType>
</xs:element>
</xs:schema>