Home -> XML Examples -> Attribute type enumerated: enumeration
<?xml version="1.0" encoding="US-ASCII"?> <!DOCTYPE root [ <!ELEMENT root ANY> <!ELEMENT stuff ANY> <!ATTLIST stuff grade (a | b | c) #REQUIRED> ] > <root> <stuff grade="a"/> <stuff grade="b"/> <stuff grade="c"/> </root>
Content of this site is © Wayne Conrad. All rights reserved.