Code

dos to unix conversion
[inkscape.git] / src / bind / java / org / w3c / dom / svg / SVGAltGlyphElement.java
2 package org.w3c.dom.svg;
4 import org.w3c.dom.DOMException;
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 }