1 2 package org.w3c.dom.svg; 3 4 import org.w3c.dom.DOMException ; 5 6 public interface SVGAltGlyphElement extends 7 SVGTextPositioningElement, 8 SVGURIReference { 9 public String getGlyphRef( ); 10 public void setGlyphRef( String glyphRef ) 11 throws DOMException ; 12 public String getFormat( ); 13 public void setFormat( String format ) 14 throws DOMException ; 15 } 16 | Popular Tags |