|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.icl.saxon.DOMDriver
DOMDriver.java: (pseudo-)SAX driver for DOM.
This class simulates the action of a SAX Parser, taking an already-constructed
DOM Document and walking around it in a depth-first traversal,
calling a SAX-compliant ContentHandler to process the children as it does so.
Field Summary | |
protected ContentHandler |
contentHandler
|
(package private) static String |
FEATURE
|
(package private) static String |
HANDLER
|
protected Node |
root
|
protected String |
systemId
|
Constructor Summary | |
DOMDriver()
|
Method Summary | |
int |
getColumnNumber()
|
ContentHandler |
getContentHandler()
|
DTDHandler |
getDTDHandler()
SAX2: Returns the object used to process declarations related to notations and unparsed entities. |
EntityResolver |
getEntityResolver()
SAX2: Returns the object used when resolving external entities during parsing (both general and parameter entities). |
ErrorHandler |
getErrorHandler()
SAX2: Returns the object used to receive callbacks for XML errors of all levels (fatal, nonfatal, warning); this is never null; |
boolean |
getFeature(String featureId)
SAX2: Tells the value of the specified feature flag. |
int |
getLineNumber()
|
Object |
getProperty(String name)
SAX2: Returns the specified property. |
String |
getPublicId()
|
String |
getSystemId()
|
void |
parse()
Walk a document (traversing the nodes depth first) |
void |
parse(InputSource source)
Parse from InputSource. |
void |
parse(String source)
Parse from SystemId. |
void |
setContentHandler(ContentHandler handler)
Set the content handler. |
void |
setDocumentHandler(DocumentHandler handler)
Deprecated. SAX2 programs should use the XMLReader interface and a ContentHandler. |
void |
setDTDHandler(DTDHandler handler)
SAX1, SAX2: Set the DTD handler for this parser. |
void |
setEntityResolver(EntityResolver resolver)
SAX1, SAX2: Set the entity resolver for this parser. |
void |
setErrorHandler(ErrorHandler handler)
SAX1, SAX2: Set the error handler for this parser. |
void |
setFeature(String featureId,
boolean on)
SAX2: Sets the state of feature flags in this parser. |
void |
setLocale(Locale locale)
SAX1: Sets the locale used for diagnostics; currently, only locales using the English language are supported. |
void |
setProperty(String propertyId,
Object property)
SAX2: Assigns the specified property. |
void |
setStartNode(Node start)
Set the DOM Document that will be walked |
void |
setSystemId(String systemId)
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
protected ContentHandler contentHandler
protected Node root
protected String systemId
static final String FEATURE
static final String HANDLER
Constructor Detail |
public DOMDriver()
Method Detail |
public void setContentHandler(ContentHandler handler)
setContentHandler
in interface XMLReader
handler
- The object to receive content events. If this also implements LexicalHandler,
it will also be notified of comments.public ContentHandler getContentHandler()
getContentHandler
in interface XMLReader
public void setLocale(Locale locale) throws SAXException
locale
- The locale for which diagnostics will be generated
SAXException
public EntityResolver getEntityResolver()
getEntityResolver
in interface XMLReader
public void setEntityResolver(EntityResolver resolver)
setEntityResolver
in interface XMLReader
public DTDHandler getDTDHandler()
getDTDHandler
in interface XMLReader
public void setDTDHandler(DTDHandler handler)
setDTDHandler
in interface XMLReader
handler
- The object to receive DTD events.public void setDocumentHandler(DocumentHandler handler)
handler
- The object to receive document events.public void setErrorHandler(ErrorHandler handler)
setErrorHandler
in interface XMLReader
handler
- The object to receive error events.public ErrorHandler getErrorHandler()
getErrorHandler
in interface XMLReader
public void setStartNode(Node start)
public void parse(InputSource source) throws SAXException
parse
in interface XMLReader
SAXException
public void parse(String source) throws SAXException
parse
in interface XMLReader
SAXException
public void parse() throws SAXException
SAXException
- On any error in the documentpublic void setSystemId(String systemId)
public String getPublicId()
getPublicId
in interface Locator
public String getSystemId()
getSystemId
in interface Locator
public int getLineNumber()
getLineNumber
in interface Locator
public int getColumnNumber()
getColumnNumber
in interface Locator
public boolean getFeature(String featureId) throws SAXNotRecognizedException
getFeature
in interface XMLReader
SAXNotRecognizedException
- thrown if the feature flag
is neither built in, nor yet assigned.public Object getProperty(String name) throws SAXNotRecognizedException
getProperty
in interface XMLReader
SAXNotRecognizedException
- thrown if the property value
is neither built in, nor yet stored.public void setFeature(String featureId, boolean on) throws SAXNotRecognizedException, SAXNotSupportedException
setFeature
in interface XMLReader
SAXNotRecognizedException
SAXNotSupportedException
public void setProperty(String propertyId, Object property) throws SAXNotRecognizedException, SAXNotSupportedException
setProperty
in interface XMLReader
SAXNotRecognizedException
SAXNotSupportedException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |