summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/text/SVGTextPositioningElement.java
blob: 61d089721c7a7e099a0673b5d5fd845e067b2bc7 (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
/*
 * SVGTextPositioningElement.java
 *
 * Created on April 13, 2007, 9:43 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.basic.SVGAnimatedLengthList;
import com.kitfox.salamander.svg.basic.SVGAnimatedNumberList;

/**
 * The SVGTextPositioningElement  interface is inherited by text-related interfaces: SVGTextElement, SVGTSpanElement, SVGTRefElement and SVGAltGlyphElement.
 * @author kitfox
 */
public interface SVGTextPositioningElement extends SVGTextContentElement
{
    /**
     * Corresponds to attribute x on the given element.
     */
    public SVGAnimatedLengthList getX();
    /**
     * Corresponds to attribute y on the given element.
     */
    public SVGAnimatedLengthList getY();
    /**
     * Corresponds to attribute dx on the given element.
     */
    public SVGAnimatedLengthList getDx();
    /**
     * Corresponds to attribute dy on the given element.
     */
    public SVGAnimatedLengthList getDy();
    /**
     * Corresponds to attribute rotate on the given element.
     */
    public SVGAnimatedNumberList getRotate();
    
}