XML for Java 2.0.0

com.ibm.xml.framework
Class ParserState

java.lang.Object
  |
  +--com.ibm.xml.framework.ParserState

public final class ParserState
extends java.lang.Object

This class is used to determine which implementation objects are to be used during a single use of the parser. The information described here may change between each use of the parser.

Version:
Revision: 63 1.3 src/com/ibm/xml/framework/ParserState.java, parser, xml4j2, xml4j2_0_0
See Also:
XMLParser

Method Summary
 AttrPool cacheAttrPool()
           
 ElementDeclPool cacheElementDeclPool()
           
 StringPool cacheStringPool()
           
 boolean getAllowJavaEncodingName()
           
 AttrPool getAttrPool()
           
 boolean getCheckNamespace()
           
 XMLDocumentHandler getDocumentHandler()
           
 XMLDocumentTypeHandler getDocumentTypeHandler()
           
 ElementDeclPool getElementDeclPool()
           
 XMLEntityHandler getEntityHandler()
           
 EntityPool getEntityPool()
           
 XMLErrorHandler getErrorHandler()
           
 XMLScanner getScanner()
           
 StringPool getStringPool()
           
 boolean getUseCharReaderForUTF8()
           
 XMLValidationHandler getValidationHandler()
           
 boolean getWarningOnDuplicateAttDef()
           
 void setAttrPool(AttrPool pool)
           
 void setElementDeclPool(ElementDeclPool pool)
           
 void setEntityPool(EntityPool pool)
           
 void setStringPool(StringPool pool)
           
 void useDefaultAttrPool()
           
 void useDefaultElementDeclPool()
           
 void useDefaultEntityPool()
           
 void useDefaultStringPool()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getScanner

public XMLScanner getScanner()

getAllowJavaEncodingName

public boolean getAllowJavaEncodingName()

getWarningOnDuplicateAttDef

public boolean getWarningOnDuplicateAttDef()

getCheckNamespace

public boolean getCheckNamespace()

getUseCharReaderForUTF8

public boolean getUseCharReaderForUTF8()

getDocumentHandler

public XMLDocumentHandler getDocumentHandler()

getDocumentTypeHandler

public XMLDocumentTypeHandler getDocumentTypeHandler()

getEntityHandler

public XMLEntityHandler getEntityHandler()

getErrorHandler

public XMLErrorHandler getErrorHandler()

getValidationHandler

public XMLValidationHandler getValidationHandler()

cacheStringPool

public StringPool cacheStringPool()

getStringPool

public StringPool getStringPool()

setStringPool

public void setStringPool(StringPool pool)

useDefaultStringPool

public void useDefaultStringPool()

cacheAttrPool

public AttrPool cacheAttrPool()

getAttrPool

public AttrPool getAttrPool()

setAttrPool

public void setAttrPool(AttrPool pool)

useDefaultAttrPool

public void useDefaultAttrPool()

getEntityPool

public EntityPool getEntityPool()

setEntityPool

public void setEntityPool(EntityPool pool)

useDefaultEntityPool

public void useDefaultEntityPool()

cacheElementDeclPool

public ElementDeclPool cacheElementDeclPool()

getElementDeclPool

public ElementDeclPool getElementDeclPool()

setElementDeclPool

public void setElementDeclPool(ElementDeclPool pool)

useDefaultElementDeclPool

public void useDefaultElementDeclPool()

XML for Java 2.0.0