niagara-ax/decompiled/org/w3c/dom/svg/SVGElement.java
2026-03-17 13:31:18 -07:00

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;
}