summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/filter/SVGFilterPrimitiveStandardAttributes.java
blob: b4ad35fced6cf83408cfd3b769010fbd05300190 (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
/*
 * SVGFilterPrimitiveStandardAttributes.java
 *
 * Created on April 13, 2007, 10:37 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.SVGAnimatedLength;
import com.kitfox.salamander.svg.basic.SVGAnimatedString;
import com.kitfox.salamander.svg.basic.SVGStylable;

/**
 * This interface defines the set of DOM attributes that are common across the filter interfaces.
 * @author kitfox
 */
public interface SVGFilterPrimitiveStandardAttributes extends SVGStylable
{
    /**
     * Corresponds to attribute x on the given element.
     */
    public SVGAnimatedLength getX();
    /**
     * Corresponds to attribute y on the given element.
     */
    public SVGAnimatedLength getY();
    /**
     * Corresponds to attribute width on the given element.
     */
    public SVGAnimatedLength getWidth();
    /**
     * Corresponds to attribute height on the given element.
     */
    public SVGAnimatedLength getHeight();
    /**
     * Corresponds to attribute result on the given element.
     */
    public SVGAnimatedString getResult();
}