|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
The interface through which result trees are built. This interface resembles
the org.xml.sax.DocumentHandler interface defined by SAX, but
the specifics correspond to XSL.
| Method Summary | |
void |
attribute(String name,
String value)
Receive notification of an attribute. |
void |
characters(String data)
Receive notification of character data. |
void |
comment(String value)
Receive notification of a comment. |
void |
endDocument()
Receive notification of the end of a document. |
void |
endElement(String name)
Receive notification of the end of an element. |
void |
namespace(String name,
NamespaceName value)
Receive notification of a namespace node. |
void |
processingInstruction(String target,
String value)
Receive notification of a processing instruction. |
void |
startDocument()
Receive notification of the beginning of a document. |
void |
startElement(String name,
String namespaceURI)
Receive notification of the beginning of an element. |
| Method Detail |
public void startDocument()
throws ResultException
ResultException - if an implementation-dependent error occurspublic void endDocument()
throws ResultException
ResultException - if an implementation-dependent error occurspublic void startElement(String name,
String namespaceURI)
throws IllegalNameException,
IllegalNodeException,
ResultException
name - the element's namenamespaceURI - the element's namespace uri
IllegalNameException - if the specified element name is illegal
IllegalNodeException - if the current node cannot contain elements
ResultException - if an implementation-dependent error occurspublic void endElement(String name)
throws ResultException
ResultException - if an implementation-dependent error occurspublic void attribute(String name,
String value)
throws AttributeAfterChildException,
IllegalNameException,
IllegalNodeException,
ResultException
name - the attribute's namevalue - the attribute's value
AttributeAfterChildException - if the current node is an element with children
(attributes cannot be added to an element after children
have been added to it)
IllegalNameException - if the specified attribute name is illegal
IllegalNodeException - if the current node is not an element
ResultException - if an implementation-dependent error occurspublic void characters(String data)
throws IllegalNodeException,
ResultException
data - the character data
IllegalNodeException - if the current node cannot contain character data
ResultException - if an implementation-dependent error occurspublic void processingInstruction(String target,
String value)
throws IllegalNameException,
IllegalNodeException,
ResultException
target - the processing instruction's targetvalue - the processing instruction's value, or null
if there is no value
IllegalNameException - if the specified target name is illegal
IllegalNodeException - if the current node cannot contain processing
instructions
ResultException - if an implementation-dependent error occurspublic void comment(String value)
throws IllegalNodeException,
ResultException
value - the comment's value
IllegalNodeException - if the current node cannot contain comments
ResultException - if an implementation-dependent error occurspublic void namespace(String name,
NamespaceName value)
throws IllegalNodeException,
ResultException
name - the namespace prefixvalue - the namespace name (URI)
IllegalNodeException - if the current node cannot contain namespaces
ResultException - if an implementation-dependent error occurs
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||