NOPRecorder.java 1.95 KB
/*
 * Decompiled with CFR 0_118.
 */
package com.day.cq.rewriter.xml.helpers;

import org.xml.sax.Attributes;
import org.xml.sax.ContentHandler;
import org.xml.sax.Locator;
import org.xml.sax.SAXException;
import org.xml.sax.ext.LexicalHandler;

public abstract class NOPRecorder
implements ContentHandler,
LexicalHandler {
    @Override
    public void setDocumentLocator(Locator locator) {
    }

    @Override
    public void startDocument() throws SAXException {
    }

    @Override
    public void endDocument() throws SAXException {
    }

    @Override
    public void startPrefixMapping(String prefix, String uri) throws SAXException {
    }

    @Override
    public void endPrefixMapping(String prefix) throws SAXException {
    }

    @Override
    public void startElement(String namespace, String name, String raw, Attributes attr) throws SAXException {
    }

    @Override
    public void endElement(String namespace, String name, String raw) throws SAXException {
    }

    @Override
    public void characters(char[] ary, int start, int length) throws SAXException {
    }

    @Override
    public void ignorableWhitespace(char[] ary, int start, int length) throws SAXException {
    }

    @Override
    public void processingInstruction(String target, String data) throws SAXException {
    }

    @Override
    public void skippedEntity(String name) throws SAXException {
    }

    @Override
    public void startDTD(String name, String public_id, String system_id) throws SAXException {
    }

    @Override
    public void endDTD() throws SAXException {
    }

    @Override
    public void startEntity(String name) throws SAXException {
    }

    @Override
    public void endEntity(String name) throws SAXException {
    }

    @Override
    public void startCDATA() throws SAXException {
    }

    @Override
    public void endCDATA() throws SAXException {
    }

    @Override
    public void comment(char[] ary, int start, int length) throws SAXException {
    }
}