1 18 package org.apache.batik.dom.svg; 19 20 import java.io.IOException ; 21 import java.io.InputStream ; 22 import java.io.Reader ; 23 24 import org.apache.batik.dom.util.DocumentFactory; 25 import org.w3c.dom.svg.SVGDocument; 26 27 33 public interface SVGDocumentFactory extends DocumentFactory { 34 35 40 SVGDocument createSVGDocument(String uri) throws IOException ; 41 42 48 SVGDocument createSVGDocument(String uri, InputStream is) 49 throws IOException ; 50 51 57 SVGDocument createSVGDocument(String uri, Reader r) throws IOException ; 58 59 } 60 | Popular Tags |