niagara-ax/decompiled/org/apache/batik/dom/svg/SVGDocumentFactory.java
2026-03-17 13:31:18 -07:00

16 lines
505 B
Java

package org.apache.batik.dom.svg;
import java.io.IOException;
import java.io.InputStream;
import java.io.Reader;
import org.apache.batik.dom.util.DocumentFactory;
import org.w3c.dom.svg.SVGDocument;
public interface SVGDocumentFactory extends DocumentFactory {
SVGDocument createSVGDocument(String str) throws IOException;
SVGDocument createSVGDocument(String str, InputStream inputStream) throws IOException;
SVGDocument createSVGDocument(String str, Reader reader) throws IOException;
}