com.jclark.xsl.tr
Interface Result
- All Known Implementing Classes:
- ResultBase, StringResult
- public interface Result
the place where a transformer sends its results
characters
public void characters(java.lang.String str)
throws XSLException
- Throws:
XSLException
rawCharacters
public void rawCharacters(java.lang.String str)
throws XSLException
- Throws:
XSLException
startElement
public void startElement(Name elementType,
NamespacePrefixMap nsMap)
throws XSLException
- (NB) The nsMap must declare the prefix on elementType correctly.
- Throws:
XSLException
endElement
public void endElement(Name elementType)
throws XSLException
- Throws:
XSLException
comment
public void comment(java.lang.String str)
throws XSLException
- Throws:
XSLException
processingInstruction
public void processingInstruction(java.lang.String target,
java.lang.String data)
throws XSLException
- Throws:
XSLException
attribute
public void attribute(Name name,
java.lang.String value)
throws XSLException
- Throws:
XSLException
start
public void start(OutputMethod outputMethod)
throws XSLException
- Throws:
XSLException
end
public void end()
throws XSLException
- Throws:
XSLException
createResult
public Result createResult(java.lang.String uri)
throws XSLException
- Throws:
XSLException
message
public void message(Node node,
java.lang.String str)
throws XSLException
- Throws:
XSLException