combined.xsd
上传用户:zhuqijet
上传日期:2013-06-25
资源大小:10074k
文件大小:0k
源码类别:

词法分析

开发平台:

Visual C++

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xs:schema xmlns:xs='http://www.w3.org/2001/XMLSchema' elementFormDefault="unqualified"  >
  3. <xs:element name="root" type="rootType" />
  4. <xs:complexType name="rootType" >
  5.   <xs:sequence >
  6.     <xs:element name="level1" type="xs:string" />
  7.   </xs:sequence>
  8.   <xs:attribute name="attBoth" type="xs:string" />  
  9.   <xs:attribute name="attSchema" type="xs:string" />  
  10. </xs:complexType>
  11. </xs:schema>