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

org.xml.sax.helpers.DefaultHandler Maven / Gradle / Ivy

Go to download

OpenGL vector map library written in Java - running on Android, iOS, Desktop and within the browser.

There is a newer version: 0.20.0
Show newest version
package org.xml.sax.helpers;

import org.xml.sax.Attributes;
import org.xml.sax.SAXException;
import org.xml.sax.SAXParseException;

public class DefaultHandler {
    public void endDocument() {

    }

    public void error(SAXParseException exception) {

    }

    public void warning(SAXParseException exception) {

    }

    public void startElement(String uri, String localName, String qName,
                             Attributes attributes) throws SAXException {

    }

    public void endElement(String uri, String localName, String qName) {

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy