summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/text/SVGAltGlyphElement.java
blob: a38ff600af2d3b64ec06e2ef9d9a98311c661149 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * SVGAltGlyphElement.java
 *
 * Created on April 13, 2007, 9:51 AM
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package com.kitfox.salamander.svg.text;

import com.kitfox.salamander.svg.DOMString;
import com.kitfox.salamander.svg.basic.SVGURIReference;

/**
 * The SVGAltGlyphElement  interface corresponds to the 'altGlyph' element.
 * @author kitfox
 */
public interface SVGAltGlyphElement extends SVGTextPositioningElement,
        SVGURIReference
{
    /**
     * Corresponds to attribute glyphRef on the given element.
     */
    public DOMString getGlyphRef();
    /**
     * Corresponds to attribute format on the given element.
     */
    public DOMString getFormat();
    
}