summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/filter/SVGFEOffseElement.java
blob: ed3a4f5c6ffb03753cd3244123cee35249773921 (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
/*
 * SVGFEOffseElement.java
 *
 * Created on April 13, 2007, 11:22 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.SVGAnimatedNumber;
import com.kitfox.salamander.svg.basic.SVGAnimatedString;
import com.kitfox.salamander.svg.basic.SVGElement;

/**
 * The SVGFEOffsetElement  interface corresponds to the 'feOffset' element.
 * @author kitfox
 */
public interface SVGFEOffseElement extends SVGElement,
        SVGFilterPrimitiveStandardAttributes
{
    /**
     * Corresponds to attribute in on the given 'feOffset' element.
     */
    public SVGAnimatedString getIn1();
    /**
     * Corresponds to attribute dx on the given 'feOffset' element.
     */
    public SVGAnimatedNumber getDx();
    /**
     * Corresponds to attribute dy on the given 'feOffset' element.
     */
    public SVGAnimatedNumber getDy();
}