The DTD Class of the com.ms.xml.parser package contains all the Document Type Definition (DTD) information for an XML document.
public class DTD { // Constructors public DTD(); // Methods public final void addLoadedNameSpace(Atom url); public final void addNameSpace(Atom as, Atom href); public final void clear(); public final Enumeration elementDeclarations(); public final Enumeration entityDeclarations(); public final ElementDecl findElementDecl(Name name); public final Entity findEntity(Name n); public final Name findLoadedNameSpace(Atom url); public final Name findLongNameSpace(Atom as); public final Notation findNotation(Name name); public final Name findShortNameSpace(Atom href); public final Name getDocType(); public final Element getSchema(); public static boolean isReservedNameSpace(Atom n); public final Enumeration notationDeclarations(); public final void save(XMLOutputStream o) throws IOException; }