All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jp.gr.xml.relax.sax.LexicalHandlerBase Maven / Gradle / Ivy

The newest version!
package jp.gr.xml.relax.sax;

import org.xml.sax.SAXException;
import org.xml.sax.ext.LexicalHandler;

/**
 * Base class of LexicalHandler
 *
 * @since   Feb. 18, 2001
 * @version Feb. 24, 2001
 * @author  ASAMI, Tomoharu ([email protected])
 */
public class LexicalHandlerBase implements LexicalHandler {
    public void startDTD(String name, String publidId, String systemID)
        throws SAXException {
    }

    public void endDTD() throws SAXException {
    }

    public void startEntity(String name) throws SAXException {
    }

    public void endEntity(String name) throws SAXException {
    }

    public void startCDATA() throws SAXException {
    }

    public void endCDATA() throws SAXException {
    }

    public void comment(char ch[], int start, int length) {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy