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

22 lines
423 B
Java

package org.w3c.dom.svg;
import org.w3c.dom.DOMException;
public interface SVGStyleElement extends SVGElement {
String getMedia();
String getTitle();
String getType();
String getXMLspace();
void setMedia(String str) throws DOMException;
void setTitle(String str) throws DOMException;
void setType(String str) throws DOMException;
void setXMLspace(String str) throws DOMException;
}