http://xml.apache.org/http://www.apache.org/http://www.w3.org/

Xerces-C++ 3.1.1
Readme
Installation
Build Instructions

Programming
Samples
FAQs

API Reference
DOM C++ Binding
Migration Guide

EnumVal
 

EnumVal shows how to enumerate the markup declarations in a DTD Grammar.

Running EnumVal
 

This program parses the specified XML file, then shows how to enumerate the contents of the DTD Grammar.

Usage:
    EnumVal <XML file>

This program parses the specified XML file, then shows how to
enumerate the contents of the DTD Grammar. Essentially,
shows how one can access the DTD information stored in internal
data structures.

Here is a sample output from EnumVal

cd xerces-c-3.1.1/samples/data
EnumVal personal.xml

ELEMENTS:
----------------------------
  Name: personnel
  Content Model: (person)+

  Name: person
  Content Model: (name,email*,url*,link?)
  Attributes:
    Name:id, Type: ID

  Name: name
  Content Model: (#PCDATA|family|given)*

  Name: email
  Content Model: (#PCDATA)*

  Name: url
  Content Model: EMPTY
  Attributes:
    Name:href, Type: CDATA

  Name: link
  Content Model: EMPTY
  Attributes:
    Name:subordinates, Type: IDREF(S)
    Name:manager, Type: IDREF(S)

  Name: family
  Content Model: (#PCDATA)*

  Name: given
  Content Model: (#PCDATA)*



Copyright © 1999-2010 The Apache Software Foundation. All Rights Reserved.