summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/basic/SVGTransformable.java
blob: 95372ff3578d97a582864c58c969cc132d10f2b0 (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
/*
 * SVGTransformable.java
 *
 * Created on April 12, 2007, 3:13 PM
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package com.kitfox.salamander.svg.basic;

import com.kitfox.salamander.svg.coordSystems.SVGAnimatedTransformList;

/**
 * 
 * Interface SVGTransformable contains properties and methods that apply to all elements which have attribute transform.
 * @author kitfox
 */
public interface SVGTransformable extends SVGLocatable
{
    /**
     * Corresponds to attribute transform on the given element.
     */
    public SVGAnimatedTransformList getTransform();
}