17 lines
296 B
Java
17 lines
296 B
Java
package org.w3c.dom.svg;
|
|
|
|
import org.w3c.dom.Document;
|
|
import org.w3c.dom.events.DocumentEvent;
|
|
|
|
public interface SVGDocument extends Document, DocumentEvent {
|
|
String getDomain();
|
|
|
|
String getReferrer();
|
|
|
|
SVGSVGElement getRootElement();
|
|
|
|
String getTitle();
|
|
|
|
String getURL();
|
|
}
|