blob: 4362efb3543b76d5d30e4270d11256e06388f6db [file] [log] [blame]
package org.w3c.dom.svg;
import org.w3c.dom.DOMException;
public interface SVGAltGlyphElement extends
SVGTextPositioningElement,
SVGURIReference {
public String getGlyphRef( );
public void setGlyphRef( String glyphRef )
throws DOMException;
public String getFormat( );
public void setFormat( String format )
throws DOMException;
}