File: BadNotationDeclaration.xsd

package info (click to toggle)
eclipse-xsd 2.22.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 10,592 kB
  • sloc: java: 61,426; xml: 1,818; makefile: 5
file content (28 lines) | stat: -rw-r--r-- 725 bytes parent folder | download | duplicates (9)
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
<?xml version="1.0" encoding="UTF-8"?>
<!--
/**
 */
-->
<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>