2008-04-22 13:36:55 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2017-07-21 07:38:17 +00:00
|
|
|
<xs:schema xmlns:tns="http://www.x2software.net/xsd/databinding/DataBindingSettings.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.x2software.net/xsd/databinding/DataBindingSettings.xsd" elementFormDefault="qualified" attributeFormDefault="unqualified">
|
2008-04-22 13:36:55 +00:00
|
|
|
<xs:element name="DataBindingSettings">
|
|
|
|
<xs:annotation>
|
|
|
|
<xs:documentation>Contains the settings and hints for the Delphi XML Data Binding.</xs:documentation>
|
|
|
|
</xs:annotation>
|
|
|
|
<xs:complexType>
|
|
|
|
<xs:sequence>
|
2008-04-24 14:37:05 +00:00
|
|
|
<xs:element name="Output" type="tns:DataBindingOutput" minOccurs="0"/>
|
2008-04-22 13:36:55 +00:00
|
|
|
</xs:sequence>
|
|
|
|
</xs:complexType>
|
|
|
|
</xs:element>
|
|
|
|
<xs:complexType name="DataBindingOutput">
|
|
|
|
<xs:annotation>
|
|
|
|
<xs:documentation>Contains the user-defined output settings last used</xs:documentation>
|
|
|
|
</xs:annotation>
|
|
|
|
<xs:sequence>
|
2008-04-24 14:37:05 +00:00
|
|
|
<xs:element name="OutputType" type="tns:DataBindingOutputType"/>
|
2008-04-22 13:36:55 +00:00
|
|
|
<xs:choice>
|
|
|
|
<xs:element name="OutputSingle">
|
|
|
|
<xs:complexType>
|
|
|
|
<xs:sequence>
|
|
|
|
<xs:element name="FileName" type="xs:string"/>
|
|
|
|
</xs:sequence>
|
|
|
|
</xs:complexType>
|
|
|
|
</xs:element>
|
|
|
|
<xs:element name="OutputMultiple">
|
|
|
|
<xs:complexType>
|
|
|
|
<xs:sequence>
|
|
|
|
<xs:element name="Path" type="xs:string"/>
|
|
|
|
<xs:element name="Prefix" type="xs:string"/>
|
|
|
|
<xs:element name="Postfix" type="xs:string"/>
|
|
|
|
</xs:sequence>
|
|
|
|
</xs:complexType>
|
|
|
|
</xs:element>
|
|
|
|
</xs:choice>
|
2017-07-21 07:38:17 +00:00
|
|
|
<xs:element name="HasChecksEmpty" type="xs:boolean" minOccurs="0"/>
|
2017-09-06 15:12:15 +00:00
|
|
|
<xs:element name="GenerateGetOptionalOrDefault" type="xs:boolean" minOccurs="0"/>
|
2008-04-22 13:36:55 +00:00
|
|
|
</xs:sequence>
|
|
|
|
</xs:complexType>
|
|
|
|
<xs:simpleType name="DataBindingOutputType">
|
|
|
|
<xs:annotation>
|
|
|
|
<xs:documentation>Determines the output type</xs:documentation>
|
|
|
|
</xs:annotation>
|
|
|
|
<xs:restriction base="xs:NMTOKEN">
|
|
|
|
<xs:enumeration value="Single"/>
|
|
|
|
<xs:enumeration value="Multiple"/>
|
|
|
|
</xs:restriction>
|
|
|
|
</xs:simpleType>
|
|
|
|
</xs:schema>
|