summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGAltGlyphElement.java
blob: 21f28dd0b2c69cd6ef98ab9af4ab55a16059f291 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

package org.w3c.dom.svg;

import org.w3c.dom.DOMException;

public interface SVGAltGlyphElement extends 
               SVGTextPositioningElement,
               SVGURIReference {
  public String getGlyphRef( );
  public void      setGlyphRef( String glyphRef )
                       throws DOMException;
  public String getFormat( );
  public void      setFormat( String format )
                       throws DOMException;
}