com.jclark.xsl.tr
Interface Result

All Known Implementing Classes:
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

public void characters(java.lang.String str)
                throws XSLException
XSLException

rawCharacters

public void rawCharacters(java.lang.String str)
                   throws XSLException
XSLException

startElement

public void startElement(Name elementType,
                         NamespacePrefixMap nsMap)
                  throws XSLException
XSLException

endElement

public void endElement(Name elementType)
                throws XSLException
XSLException

comment

public void comment(java.lang.String str)
             throws XSLException
XSLException

processingInstruction

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

attribute

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

start

public void start(OutputMethod outputMethod)
           throws XSLException
XSLException

end

public void end()
         throws XSLException
XSLException

createResult

public Result createResult(java.lang.String uri)
                    throws XSLException
XSLException

message

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