1 2 package org.w3c.dom.svg;3 4 import org.w3c.dom.DOMException ;5 6 public interface SVGLangSpace {7 public String getXMLlang( );8 public void setXMLlang( String xmllang )9 throws DOMException ;10 public String getXMLspace( );11 public void setXMLspace( String xmlspace )12 throws DOMException ;13 }14