blob: cfdf4801c99e3a67d4cfd54a18c777d29629de5b [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<!--
Document : sample.dtd
Created on : May 8, 2003, 11:18 AM
Author : Rajeshwar Patil
Description:
Sample dtd used for verification of validation framework.
-->
<!--
-->
<!ELEMENT root-element (non-zero-length-property, number-property+,
boolean-property*, range-property?, enumeration-property,
object-one, object-two?, object-three?, object-four,
object-five*, object-six+, object-seven*,object-eight*)>
<!--
-->
<!ELEMENT object-one (property-one, property-two?)>
<!--
-->
<!ELEMENT object-two (property-one, property-two)>
<!--
-->
<!ELEMENT object-three (property-one, property-two?,
property-three+, property-four*)>
<!--
-->
<!ELEMENT object-four (property-one?, property-two?)>
<!--
-->
<!ELEMENT object-five (property-one, property-two?)>
<!--
-->
<!ELEMENT object-six (property-one?, property-two?)>
<!--
-->
<!ELEMENT object-seven (property-one, property-two)>
<!--
-->
<!ELEMENT object-eight (property-one, property-two?, child-object-one,
child-object-two?, child-object-three*, child-object-four+)>
<!--
-->
<!ELEMENT child-object-one (property-one, property-two?)>
<!--
-->
<!ELEMENT child-object-two (property-one, property-two)>
<!--
-->
<!ELEMENT child-object-three (property-one?, property-two?)>
<!--
-->
<!ELEMENT child-object-four (property-one, property-two?,
property-three+, property-four*)>
<!ELEMENT boolean-property (#PCDATA)>
<!ELEMENT number-property (#PCDATA)>
<!ELEMENT non-zero-length-property (#PCDATA)>
<!ELEMENT range-property (#PCDATA)>
<!ELEMENT enumeration-property (#PCDATA)>
<!ELEMENT property-one (#PCDATA)>
<!ELEMENT property-two (#PCDATA)>
<!ELEMENT property-three (#PCDATA)>
<!ELEMENT property-four (#PCDATA)>