Sample.xdb
上传用户:fh681027
上传日期:2022-07-23
资源大小:1959k
文件大小:1k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. <?xml version="1.0"?>
  2. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xdb="http://www.borland.com/schemas/delphi/6.0/XMLDataBinding">
  3. <xs:element name="books" type="booksType"/>
  4. <xs:complexType name="booksType"><xs:annotation>
  5. <xs:appinfo xdb:docElement="books"/>
  6. </xs:annotation>
  7. <xs:sequence>
  8. <xs:element name="book" type="bookType" maxOccurs="unbounded"/>
  9. <xs:element name="ebook" type="ebookType" maxOccurs="unbounded"/>
  10. </xs:sequence>
  11. <xs:attribute name="text" type="xs:string"/>
  12. </xs:complexType>
  13. <xs:complexType name="bookType"><xs:annotation>
  14. <xs:appinfo xdb:repeated="True"/>
  15. </xs:annotation>
  16. <xs:sequence>
  17. <xs:element name="title" type="xs:string"/>
  18. <xs:element name="author" type="xs:string" maxOccurs="unbounded"/>
  19. </xs:sequence>
  20. </xs:complexType>
  21. <xs:complexType name="ebookType"><xs:annotation>
  22. <xs:appinfo xdb:repeated="True"/>
  23. </xs:annotation>
  24. <xs:sequence>
  25. <xs:element name="title" type="xs:string"/>
  26. <xs:element name="url" type="xs:string"/>
  27. <xs:element name="author" type="xs:string"/>
  28. </xs:sequence>
  29. </xs:complexType>
  30. </xs:schema>