summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/text/SVGGlyphRefElement.java
blob: 43849b16d42cb280d5b7b34d229ef0ef90243884 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*
 * SVGGlyphRefElement.java
 *
 * Created on April 13, 2007, 9:54 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.SVGElement;
import com.kitfox.salamander.svg.basic.SVGStylable;
import com.kitfox.salamander.svg.basic.SVGURIReference;

/**
 * The SVGGlyphRefElement  interface corresponds to the 'glyphRef' element.
 * @author kitfox
 */
public interface SVGGlyphRefElement extends SVGElement,
        SVGURIReference,
        SVGStylable
{
    /**
     * Corresponds to attribute glyphRef on the given element.
     */
    public DOMString getGlyphRef();
    /**
     * Corresponds to attribute format on the given element.
     */
    public DOMString getFormat();
    /**
     * Corresponds to attribute x on the given element.
     */
    public float getX();
    /**
     * Corresponds to attribute y on the given element.
     */
    public float getY();
    /**
     * Corresponds to attribute dx on the given element.
     */
    public float getDx();
    /**
     * Corresponds to attribute dy on the given element.
     */
    public float getDy();
}