characters
public void characters(char[] chars,
int start,
int length)
throws SAXException
Signals the start of characters
chars
- the character array containing the characters
to receivestart
- the index into the character array to start receiving
characters atlength
- the number of characters to recieve
comment
public void comment(char[] ch,
int start,
int length)
throws SAXException
Signals the start of a comment
endCDATA
public void endCDATA()
throws SAXException
Signals and end to CDATA section
endDTD
public void endDTD()
throws SAXException
Signals the end of the DTD internal subset
endDocument
public void endDocument()
throws SAXException
Signals the end of the document
endElement
public void endElement(String name)
throws SAXException
DocumentHandler#endElement
Signals the end of an element
name
- the name of the element
endElement
public void endElement(String namespaceURI,
String localName,
String qName)
throws SAXException
ContentHandler#endElement
Signals the end of an element
endEntity
public void endEntity(String name)
throws SAXException
Signals the end of an Entity
endPrefixMapping
public void endPrefixMapping(String prefix)
throws SAXException
Signals to end the namespace prefix mapping
prefix
- the namespace prefix
getRoot
public XPathNode getRoot()
Returns the root XPathNode
ignorableWhitespace
public void ignorableWhitespace(char[] chars,
int start,
int length)
throws SAXException
Signals the start of ignorable whitespace characters
chars
- the character array containing the characters
to receivestart
- the index into the character array to start receiving
characters atlength
- the number of characters to recieve
processingInstruction
public void processingInstruction(String target,
String data)
throws SAXException
Signals to recieve a processing instruction
target
- the target of the processing instructiondata
- the content of the processing instruction
setDocumentLocator
public void setDocumentLocator(Locator locator)
Sets the document locator
locator
- the Locator used by this DocumentHandler
setOutputHandler
public void setOutputHandler(Writer writer)
setOutputHandler
public void setOutputHandler(ResultHandler handler)
setProcessor
public void setProcessor(XSLTProcessor processor)
Sets the XSLTProcessor to use for the XSL Transformations
processor
- the XSLTProcessor to invoke
skippedEntity
public void skippedEntity(String name)
throws SAXException
Signals that an entity was skipped by the parser
name
- the skipped entity's name
startCDATA
public void startCDATA()
throws SAXException
Signals the start of a CDATA section
startDTD
public void startDTD(String name,
String publicId,
String systemId)
throws SAXException
Signals the start of the DTD internal subset
startDocument
public void startDocument()
throws SAXException
Signals the start of a document
startElement
public void startElement(String name,
AttributeList atts)
throws SAXException
DocumentHandler#startElement
Signals the start of element
name
- the name of the elementatts
- the AttributeList containing the associated
attributes for the element
startElement
public void startElement(String namespaceURI,
String localName,
String qName,
Attributes atts)
throws SAXException
ContentHandler#startElement
Signals the start of element
atts
- the AttributeList containing the associated
attributes for the element
startEntity
public void startEntity(String name)
throws SAXException
Signals the start of an Entity
startPrefixMapping
public void startPrefixMapping(String prefix,
String uri)
throws SAXException
Signals to start the namespace - prefix mapping
prefix
- the namespace prefix to mapuri
- the namespace URI