19 lines
364 B
Java
19 lines
364 B
Java
package org.w3c.dom.svg;
|
|
|
|
import org.w3c.dom.DOMException;
|
|
import org.w3c.dom.Element;
|
|
|
|
public interface SVGElement extends Element {
|
|
String getId();
|
|
|
|
SVGSVGElement getOwnerSVGElement();
|
|
|
|
SVGElement getViewportElement();
|
|
|
|
String getXMLbase();
|
|
|
|
void setId(String str) throws DOMException;
|
|
|
|
void setXMLbase(String str) throws DOMException;
|
|
}
|