KickJava   Java API By Example, From Geeks To Geeks.

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


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