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

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

There is a newer version: 1.11
Show newest version
package jp.gr.xml.relax.sax;

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

/**
 * Base class of DeclHandler
 *
 * @since   Feb. 18, 2001
 * @version Feb. 24, 2001
 * @author  ASAMI, Tomoharu ([email protected])
 */
public class DeclHandlerBase implements DeclHandler {
    public void elementDecl(String name, String model) throws SAXException {
    }

    public void attributeDecl(
        String eName,
        String aName,
        String type,
        String valueDefault,
        String value)
        throws SAXException {
    }

    public void internalEntityDecl(String name, String value)
        throws SAXException {
    }

    public void externalEntityDecl(
        String name,
        String publicId,
        String systemId)
        throws SAXException {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy