com.jclark.xsl.tr
Interface Result

All Known Implementing Classes:
MultiNamespaceResult, ResultBase, StringResult

public interface Result


Method Summary
 void attribute(Name name, java.lang.String value)
           
 void characters(java.lang.String str)
           
 void comment(java.lang.String str)
           
 Result createResult(java.lang.String uri)
           
 void end()
           
 void endElement(Name elementType)
           
 void message(Node node, java.lang.String str)
           
 void processingInstruction(java.lang.String target, java.lang.String data)
           
 void rawCharacters(java.lang.String str)
           
 void start(OutputMethod outputMethod)
           
 void startElement(Name elementType, NamespacePrefixMap nsMap)
           
 

Method Detail

characters

void characters(java.lang.String str)
                throws XSLException
Throws:
XSLException

rawCharacters

void rawCharacters(java.lang.String str)
                   throws XSLException
Throws:
XSLException

startElement

void startElement(Name elementType,
                  NamespacePrefixMap nsMap)
                  throws XSLException
Throws:
XSLException

endElement

void endElement(Name elementType)
                throws XSLException
Throws:
XSLException

comment

void comment(java.lang.String str)
             throws XSLException
Throws:
XSLException

processingInstruction

void processingInstruction(java.lang.String target,
                           java.lang.String data)
                           throws XSLException
Throws:
XSLException

attribute

void attribute(Name name,
               java.lang.String value)
               throws XSLException
Throws:
XSLException

start

void start(OutputMethod outputMethod)
           throws XSLException
Throws:
XSLException

end

void end()
         throws XSLException
Throws:
XSLException

createResult

Result createResult(java.lang.String uri)
                    throws XSLException
Throws:
XSLException

message

void message(Node node,
             java.lang.String str)
             throws XSLException
Throws:
XSLException