Save This Page
Home » openjdk-7 » com.sun.org.apache.xalan » internal » xsltc » trax » [javadoc | source]
com.sun.org.apache.xalan.internal.xsltc.trax
public class: TransformerHandlerImpl [javadoc | source]
java.lang.Object
   com.sun.org.apache.xalan.internal.xsltc.trax.TransformerHandlerImpl

All Implemented Interfaces:
    DeclHandler, TransformerHandler

Implementation of a JAXP1.1 TransformerHandler
Constructor:
 public TransformerHandlerImpl(TransformerImpl transformer) 
    Cosntructor - pass in reference to a TransformerImpl object
Method from com.sun.org.apache.xalan.internal.xsltc.trax.TransformerHandlerImpl Summary:
attributeDecl,   characters,   comment,   elementDecl,   endCDATA,   endDTD,   endDocument,   endElement,   endEntity,   endPrefixMapping,   externalEntityDecl,   getSystemId,   getTransformer,   ignorableWhitespace,   internalEntityDecl,   notationDecl,   processingInstruction,   reset,   setDocumentLocator,   setResult,   setSystemId,   skippedEntity,   startCDATA,   startDTD,   startDocument,   startElement,   startEntity,   startPrefixMapping,   unparsedEntityDecl
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from com.sun.org.apache.xalan.internal.xsltc.trax.TransformerHandlerImpl Detail:
 public  void attributeDecl(String eName,
    String aName,
    String type,
    String valueDefault,
    String value) throws SAXException 
    Implements org.xml.sax.ext.DeclHandler.attributeDecl()
 public  void characters(char[] ch,
    int start,
    int length) throws SAXException 
    Implements org.xml.sax.ContentHandler.characters() Receive notification of character data.
 public  void comment(char[] ch,
    int start,
    int length) throws SAXException 
    Implements org.xml.sax.ext.LexicalHandler.comment() Receieve notification of a comment
 public  void elementDecl(String name,
    String model) throws SAXException 
    Implements org.xml.sax.ext.DeclHandler.elementDecl()
 public  void endCDATA() throws SAXException 
    Implements org.xml.sax.ext.LexicalHandler.endCDATA()
 public  void endDTD() throws SAXException 
    Implements org.xml.sax.ext.LexicalHandler.endDTD()
 public  void endDocument() throws SAXException 
    Implements org.xml.sax.ContentHandler.endDocument() Receive notification of the end of a document.
 public  void endElement(String namespaceURI,
    String localName,
    String qname) throws SAXException 
    Implements org.xml.sax.ContentHandler.endElement() Receive notification of the end of an element.
 public  void endEntity(String name) throws SAXException 
    Implements org.xml.sax.ext.LexicalHandler.endEntity()
 public  void endPrefixMapping(String prefix) throws SAXException 
    Implements org.xml.sax.ContentHandler.endPrefixMapping() End the scope of a prefix-URI Namespace mapping.
 public  void externalEntityDecl(String name,
    String publicId,
    String systemId) throws SAXException 
    Implements org.xml.sax.ext.DeclHandler.externalEntityDecl()
 public String getSystemId() 
    Implements javax.xml.transform.sax.TransformerHandler.getSystemId() Get the base ID (URI or system ID) from where relative URLs will be resolved.
 public Transformer getTransformer() 
    Implements javax.xml.transform.sax.TransformerHandler.getTransformer() Get the Transformer associated with this handler, which is needed in order to set parameters and output properties.
 public  void ignorableWhitespace(char[] ch,
    int start,
    int length) throws SAXException 
    Implements org.xml.sax.ContentHandler.ignorableWhitespace() Receive notification of ignorable whitespace in element content. Similar to characters(char[], int, int).
 public  void internalEntityDecl(String name,
    String value) throws SAXException 
    Implements org.xml.sax.ext.DeclHandler.externalEntityDecl()
 public  void notationDecl(String name,
    String publicId,
    String systemId) throws SAXException 
    Implements org.xml.sax.DTDHandler.notationDecl()
 public  void processingInstruction(String target,
    String data) throws SAXException 
    Implements org.xml.sax.ContentHandler.processingInstruction() Receive notification of a processing instruction.
 public  void reset() 
    Implementation of the reset() method
 public  void setDocumentLocator(Locator locator) 
    Implements org.xml.sax.ContentHandler.setDocumentLocator() Receive an object for locating the origin of SAX document events.
 public  void setResult(Result result) throws IllegalArgumentException 
    Implements javax.xml.transform.sax.TransformerHandler.setResult() Enables the user of the TransformerHandler to set the to set the Result for the transformation.
 public  void setSystemId(String id) 
    Implements javax.xml.transform.sax.TransformerHandler.setSystemId() Get the base ID (URI or system ID) from where relative URLs will be resolved.
 public  void skippedEntity(String name) throws SAXException 
    Implements org.xml.sax.ContentHandler.skippedEntity() Receive notification of a skipped entity.
 public  void startCDATA() throws SAXException 
    Implements org.xml.sax.ext.LexicalHandler.startCDATA()
 public  void startDTD(String name,
    String publicId,
    String systemId) throws SAXException 
    Implements org.xml.sax.ext.LexicalHandler.startDTD()
 public  void startDocument() throws SAXException 
    Implements org.xml.sax.ContentHandler.startDocument() Receive notification of the beginning of a document.
 public  void startElement(String uri,
    String localName,
    String qname,
    Attributes attributes) throws SAXException 
    Implements org.xml.sax.ContentHandler.startElement() Receive notification of the beginning of an element.
 public  void startEntity(String name) throws SAXException 
    Implements org.xml.sax.ext.LexicalHandler.startEntity()
 public  void startPrefixMapping(String prefix,
    String uri) throws SAXException 
    Implements org.xml.sax.ContentHandler.startPrefixMapping() Begin the scope of a prefix-URI Namespace mapping.
 public  void unparsedEntityDecl(String name,
    String publicId,
    String systemId,
    String notationName) throws SAXException 
    Implements org.xml.sax.DTDHandler.unparsedEntityDecl()