com.jclark.xsl.tr
Interface Result

All Known Implementing Classes:
ResultBase

public interface Result

the place where a transformer sends its results


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)
          (NB) The nsMap must declare the prefix on elementType correctly.
 

Method Detail

characters

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

rawCharacters

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

startElement

public void startElement(Name elementType,
                         NamespacePrefixMap nsMap)
                  throws XSLException
(NB) The nsMap must declare the prefix on elementType correctly.

endElement

public void endElement(Name elementType)
                throws XSLException

comment

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

processingInstruction

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

attribute

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

start

public void start(OutputMethod outputMethod)
           throws XSLException

end

public void end()
         throws XSLException

createResult

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

message

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