14 lines
255 B
Java
14 lines
255 B
Java
package org.w3c.dom.svg;
|
|
|
|
import org.w3c.dom.DOMException;
|
|
|
|
public interface SVGLangSpace {
|
|
String getXMLlang();
|
|
|
|
String getXMLspace();
|
|
|
|
void setXMLlang(String str) throws DOMException;
|
|
|
|
void setXMLspace(String str) throws DOMException;
|
|
}
|