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

/**
 * The SVGFEMergeNodeElement interface corresponds to the 'feMergeNode' element.
 * @author kitfox
 */
public interface SVGFEMergeNodeElement extends SVGElement
{
    /**
     * Corresponds to attribute in on the given 'feMergeNode' element.
     */
    public SVGAnimatedString getIn1();
}