src/main/java/org/apache/sling/rewriter/impl/components/AbstractTraxSerializerFactory.java [190:298]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        public void characters(char c[], int start, int len)
        throws SAXException {
            contentHandler.characters(c, start, len);
        }

        /**
         * Receive notification of ignorable whitespace in element content.
         *
         * @param c The characters from the XML document.
         * @param start The start position in the array.
         * @param len The number of characters to read from the array.
         */
        public void ignorableWhitespace(char c[], int start, int len)
        throws SAXException {
            contentHandler.ignorableWhitespace(c, start, len);
        }

        /**
         * Receive notification of a processing instruction.
         *
         * @param target The processing instruction target.
         * @param data The processing instruction data, or null if none was
         *             supplied.
         */
        public void processingInstruction(String target, String data)
        throws SAXException {
            contentHandler.processingInstruction(target, data);
        }

        /**
         * Receive notification of a skipped entity.
         *
         * @param name The name of the skipped entity.  If it is a  parameter
         *             entity, the name will begin with '%'.
         */
        public void skippedEntity(String name)
        throws SAXException {
            contentHandler.skippedEntity(name);
        }

        /**
         * Report the start of DTD declarations, if any.
         *
         * @param name The document type name.
         * @param publicId The declared public identifier for the external DTD
         *                 subset, or null if none was declared.
         * @param systemId The declared system identifier for the external DTD
         *                 subset, or null if none was declared.
         */
        public void startDTD(String name, String publicId, String systemId)
        throws SAXException {
            lexicalHandler.startDTD(name, publicId, systemId);
        }

        /**
         * Report the end of DTD declarations.
         */
        public void endDTD()
        throws SAXException {
            lexicalHandler.endDTD();
        }

        /**
         * Report the beginning of an entity.
         *
         * @param name The name of the entity. If it is a parameter entity, the
         *             name will begin with '%'.
         */
        public void startEntity(String name)
        throws SAXException {
            lexicalHandler.startEntity(name);
        }

        /**
         * Report the end of an entity.
         *
         * @param name The name of the entity that is ending.
         */
        public void endEntity(String name)
        throws SAXException {
            lexicalHandler.endEntity(name);
        }

        /**
         * Report the start of a CDATA section.
         */
        public void startCDATA()
        throws SAXException {
            lexicalHandler.startCDATA();
        }

        /**
         * Report the end of a CDATA section.
         */
        public void endCDATA()
        throws SAXException {
            lexicalHandler.endCDATA();
        }

        /**
         * Report an XML comment anywhere in the document.
         *
         * @param ch An array holding the characters in the comment.
         * @param start The starting position in the array.
         * @param len The number of characters to use from the array.
         */
        public void comment(char ch[], int start, int len)
        throws SAXException {
            lexicalHandler.comment(ch, start, len);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/sling/rewriter/impl/components/TraxSerializer.java [201:283]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void characters(char c[], int start, int len)
    throws SAXException {
        contentHandler.characters(c, start, len);
    }

    /**
     * @see org.xml.sax.ContentHandler#ignorableWhitespace(char[], int, int)
     */
    public void ignorableWhitespace(char c[], int start, int len)
    throws SAXException {
        contentHandler.ignorableWhitespace(c, start, len);
    }

    /**
     * @see org.xml.sax.ContentHandler#processingInstruction(java.lang.String, java.lang.String)
     */
    public void processingInstruction(String target, String data)
    throws SAXException {
        contentHandler.processingInstruction(target, data);
    }

    /**
     * @see org.xml.sax.ContentHandler#skippedEntity(java.lang.String)
     */
    public void skippedEntity(String name)
    throws SAXException {
        contentHandler.skippedEntity(name);
    }

    /**
     * @see org.xml.sax.ext.LexicalHandler#startDTD(java.lang.String, java.lang.String, java.lang.String)
     */
    public void startDTD(String name, String publicId, String systemId)
    throws SAXException {
        lexicalHandler.startDTD(name, publicId, systemId);
    }

    /**
     * @see org.xml.sax.ext.LexicalHandler#endDTD()
     */
    public void endDTD()
    throws SAXException {
        lexicalHandler.endDTD();
    }

    /**
     * @see org.xml.sax.ext.LexicalHandler#startEntity(java.lang.String)
     */
    public void startEntity(String name)
    throws SAXException {
        lexicalHandler.startEntity(name);
    }

    /**
     * @see org.xml.sax.ext.LexicalHandler#endEntity(java.lang.String)
     */
    public void endEntity(String name)
    throws SAXException {
        lexicalHandler.endEntity(name);
    }

    /**
     * @see org.xml.sax.ext.LexicalHandler#startCDATA()
     */
    public void startCDATA()
    throws SAXException {
        lexicalHandler.startCDATA();
    }

    /**
     * @see org.xml.sax.ext.LexicalHandler#endCDATA()
     */
    public void endCDATA()
    throws SAXException {
        lexicalHandler.endCDATA();
    }

    /**
     * @see org.xml.sax.ext.LexicalHandler#comment(char[], int, int)
     */
    public void comment(char ch[], int start, int len)
    throws SAXException {
        lexicalHandler.comment(ch, start, len);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



