summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/filter/SVGFEImageElement.java
blob: 052f893a1caae2f6437c11c5b72160639f4f4bca (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
/*
 * SVGFEImageElement.java
 *
 * Created on April 13, 2007, 11:17 AM
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package com.kitfox.salamander.svg.filter;

import com.kitfox.salamander.svg.basic.SVGElement;
import com.kitfox.salamander.svg.basic.SVGExternalResourcesRequired;
import com.kitfox.salamander.svg.basic.SVGLangSpace;
import com.kitfox.salamander.svg.basic.SVGURIReference;
import com.kitfox.salamander.svg.coordSystems.SVGAnimatedPreserveAspectRatio;

/**
 * The SVGFEImageElement  interface corresponds to the 'feImage' element.
 * @author kitfox
 */
public interface SVGFEImageElement extends SVGElement,
        SVGURIReference,
        SVGLangSpace,
        SVGExternalResourcesRequired,
        SVGFilterPrimitiveStandardAttributes
{
    /**
     * Corresponds to attribute preserveAspectRatio on the given element.
     */
    public SVGAnimatedPreserveAspectRatio getPreserveAspectRatio();
}