File: BadNotationDeclaration.xsd

package info (click to toggle)
eclipse-emf 2.5.0-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 50,964 kB
  • sloc: java: 407,889; xml: 7,165; sh: 200; makefile: 13
file content (32 lines) | stat: -rwxr-xr-x 835 bytes parent folder | download | duplicates (2)
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
30
31
32
<?xml version="1.0" encoding="UTF-8"?>
<!--
/**
 * <copyright>
 * </copyright>
 *
 * $Id: BadNotationDeclaration.xsd,v 1.1 2005/06/13 14:08:22 marcelop Exp $
 */
-->
<xsd:schema
  targetNamespace="http://www.example.com/Bad"
  xmlns:this="http://www.example.com/Bad" 
  xmlns:xsd="http://www.w3.org/2001/XMLSchema">

    <xsd:notation/>
    <xsd:notation name="badNoPublic"/>
    <xsd:notation name="bad:name" public="x"/>
    <xsd:notation name="badAttribute" x="optional" public="x"/>
    <xsd:notation name="badID" id="id:id" public="x"/>

    <xsd:notation name="badContent" public="x">
        <xsd:bad/>
    </xsd:notation>

    <xsd:notation name="badAnnotation" public="x">
        <xsd:annotation/>
        <xsd:annotation/>
    </xsd:notation>

    <xsd:notation name="badAnnotation" public="##" system="##"/>

</xsd:schema>