- 
- All Superinterfaces:
- ContentHandler,- DTDHandler,- LexicalHandler
 
 public interface TransformerHandler extends ContentHandler, LexicalHandler, DTDHandler A TransformerHandler listens for SAX ContentHandler parse events and transforms them to a Result.- Since:
- 1.4
 
- 
- 
Method SummaryModifier and Type Method Description StringgetSystemId()Get the base ID (URI or system ID) from where relative URLs will be resolved.TransformergetTransformer()Get theTransformerassociated with this handler, which is needed in order to set parameters and output properties.voidsetResult(Result result)Set theResultassociated with thisTransformerHandlerto be used for the transformation.voidsetSystemId(String systemID)Set the base ID (URI or system ID) from where relative URLs will be resolved.- 
Methods declared in interface org.xml.sax.ContentHandlercharacters, endDocument, endElement, endPrefixMapping, ignorableWhitespace, processingInstruction, setDocumentLocator, skippedEntity, startDocument, startElement, startPrefixMapping
 - 
Methods declared in interface org.xml.sax.DTDHandlernotationDecl, unparsedEntityDecl
 - 
Methods declared in interface org.xml.sax.ext.LexicalHandlercomment, endCDATA, endDTD, endEntity, startCDATA, startDTD, startEntity
 
- 
 
- 
- 
- 
Method Detail- 
setResultvoid setResult(Result result) throws IllegalArgumentException Set the Resultassociated with thisTransformerHandlerto be used for the transformation.- Parameters:
- result- A- Resultinstance, should not be- null.
- Throws:
- IllegalArgumentException- if result is invalid for some reason.
 
 - 
setSystemIdvoid setSystemId(String systemID) Set the base ID (URI or system ID) from where relative URLs will be resolved.- Parameters:
- systemID- Base URI for the source tree.
 
 - 
getSystemIdString getSystemId() Get the base ID (URI or system ID) from where relative URLs will be resolved.- Returns:
- The systemID that was set with setSystemId(java.lang.String).
 
 - 
getTransformerTransformer getTransformer() Get the Transformerassociated with this handler, which is needed in order to set parameters and output properties.- Returns:
- Transformerassociated with this- TransformerHandler.
 
 
- 
 
-