KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > w3c > dom > svg > SVGGlyphRefElement


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