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

package com.kitfox.salamander.svg.fills;

import com.kitfox.salamander.svg.basic.SVGAnimatedNumber;
import com.kitfox.salamander.svg.basic.SVGElement;
import com.kitfox.salamander.svg.basic.SVGStylable;

/**
 * The SVGStopElement  interface corresponds to the 'stop' element.
 * @author kitfox
 */
public interface SVGStopElement extends SVGElement,
        SVGStylable
{
    /**
     * Corresponds to attribute offset on the given 'stop' element.
     */
    public SVGAnimatedNumber getOffset();
}