8 lines
150 B
Java
8 lines
150 B
Java
package org.w3c.dom.svg;
|
|
|
|
import org.w3c.dom.DOMException;
|
|
|
|
public interface GetSVGDocument {
|
|
SVGDocument getSVGDocument() throws DOMException;
|
|
}
|