XML for Java 2.0.0

com.ibm.xml.framework
Interface XMLDocumentTypeHandler

All Known Implementing Classes:
XMLParser

public abstract interface XMLDocumentTypeHandler

Version:
Revision: 53 1.7 src/com/ibm/xml/framework/XMLDocumentTypeHandler.java, parser, xml4j2, xml4j2_0_0

Method Summary
 void attlistDecl(int elementIndex, int attDefIndex)
           
 void doctypeDecl(int rootElementNameIndex)
          This function will be called when a <!DOCTYPE...> declaration is encountered.
 void elementDecl(int elementIndex)
           
 void endExternalSubset()
          This function will be called at the end of the "external subset" of a doctype declaration.
 void endInternalSubset()
          This function will be called at the end of the "internal subset" of a doctype declaration.
 void externalEntityDecl(int entityIndex)
           
 void internalEntityDecl(int entityIndex)
           
 void notationDecl(int notationIndex)
           
 void startExternalSubset(int publicIdStringIndex, int systemIdStringIndex)
          This function will be called at the start of the "external subset" of a doctype declaration.
 void startInternalSubset()
          This function will be called at the start of the "internal subset" of a doctype declaration.
 void unparsedEntityDecl(int entityIndex)
           
 

Method Detail

doctypeDecl

public void doctypeDecl(int rootElementNameIndex)
                 throws java.lang.Exception
This function will be called when a <!DOCTYPE...> declaration is encountered.

startInternalSubset

public void startInternalSubset()
                         throws java.lang.Exception
This function will be called at the start of the "internal subset" of a doctype declaration.

endInternalSubset

public void endInternalSubset()
                       throws java.lang.Exception
This function will be called at the end of the "internal subset" of a doctype declaration.

startExternalSubset

public void startExternalSubset(int publicIdStringIndex,
                                int systemIdStringIndex)
                         throws java.lang.Exception
This function will be called at the start of the "external subset" of a doctype declaration.

endExternalSubset

public void endExternalSubset()
                       throws java.lang.Exception
This function will be called at the end of the "external subset" of a doctype declaration.

elementDecl

public void elementDecl(int elementIndex)
                 throws java.lang.Exception

attlistDecl

public void attlistDecl(int elementIndex,
                        int attDefIndex)
                 throws java.lang.Exception

internalEntityDecl

public void internalEntityDecl(int entityIndex)
                        throws java.lang.Exception

externalEntityDecl

public void externalEntityDecl(int entityIndex)
                        throws java.lang.Exception

unparsedEntityDecl

public void unparsedEntityDecl(int entityIndex)
                        throws java.lang.Exception

notationDecl

public void notationDecl(int notationIndex)
                  throws java.lang.Exception

XML for Java 2.0.0