File: MagicXMLSchema.xsd

package info (click to toggle)
eclipse-emf 2.42.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 73,344 kB
  • sloc: java: 711,198; xml: 12,829; makefile: 5
file content (23 lines) | stat: -rw-r--r-- 846 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version='1.0' encoding='UTF-8'?>
<!-- XML Schema schema for magic parts of XML Schemas -->
<xs:schema targetNamespace="http://www.w3.org/2001/XMLSchema" blockDefault="#all" elementFormDefault="qualified" version="1.0" xmlns:xs="http://www.w3.org/2001/XMLSchema" xml:lang="EN">

  <xs:annotation>
    <xs:documentation>
      This defines two magic types, 
      namely anyType, the simple type definition almost equivalent to the ur-type definition,
      and anySimpleType, the base type of all built-in datatypes.
    </xs:documentation>
  </xs:annotation>
 
  <xs:simpleType name="anyType" id="anyType">
    <xs:restriction base="xs:anyType">
    </xs:restriction>
  </xs:simpleType>

  <xs:simpleType name="anySimpleType" id="anySimpleType">
    <xs:restriction base="xs:anyType">
    </xs:restriction>
  </xs:simpleType>

</xs:schema>