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

org.apache.batik.dom.svg.SAXSVGDocumentFactory Maven / Gradle / Ivy

There is a newer version: 3.22.0
Show newest version
package org.apache.batik.dom.svg;

/**
 * GeoTools wants batik 1.7 and Jasper wants version 1.8. SAXSVGDocumentFactory has been moved to another
 * package. This class does the bridge.
 */
public class SAXSVGDocumentFactory extends org.apache.batik.anim.dom.SAXSVGDocumentFactory {
    /**
     * Creates a new SVGDocumentFactory object.
     *
     * @param parser The SAX2 parser classname.
     */
    public SAXSVGDocumentFactory(final String parser) {
        super(parser);
    }

    /**
     * Creates a new SVGDocumentFactory object.
     *
     * @param parser The SAX2 parser classname.
     * @param dd Whether a document descriptor must be generated.
     */
    public SAXSVGDocumentFactory(final String parser, final boolean dd) {
        super(parser, dd);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy