1 2 package org.w3c.dom.svg; 3 4 import org.w3c.dom.DOMException ; 5 6 public interface SVGGlyphRefElement extends 7 SVGElement, 8 SVGURIReference, 9 SVGStylable { 10 public String getGlyphRef( ); 11 public void setGlyphRef( String glyphRef ) 12 throws DOMException ; 13 public String getFormat( ); 14 public void setFormat( String format ) 15 throws DOMException ; 16 public float getX( ); 17 public void setX( float x ) 18 throws DOMException ; 19 public float getY( ); 20 public void setY( float y ) 21 throws DOMException ; 22 public float getDx( ); 23 public void setDx( float dx ) 24 throws DOMException ; 25 public float getDy( ); 26 public void setDy( float dy ) 27 throws DOMException ; 28 } 29 | Popular Tags |