public interface MessageListener
Modifier and Type | Method and Description |
---|---|
void |
message(XdmNode content,
boolean terminate,
javax.xml.transform.SourceLocator locator)
Notify a message written using the
xsl:message instruction |
void message(XdmNode content, boolean terminate, javax.xml.transform.SourceLocator locator)
xsl:message
instructioncontent
- a document node representing the message content. Note that the output of
xsl:message
is always an XML document node. It can be flattened to obtain the
string value if required by calling getStringValue()
.terminate
- Set to true if terminate="yes"
was specified or to false otherwise.
The message listener does not need to take any special action based on this parameter, but the information
is available if required. If terminate="yes"
was specified, then the transformation will abort
with an exception immediately on return from this callback.locator
- an object that contains the location of the xsl:message
instruction in the
stylesheet that caused this message to be output. This provides access to the URI of the stylesheet module
and the line number of the xsl:message
instruction.Copyright (c) 2004-2018 Saxonica Limited. All rights reserved.