summaryrefslogblamecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/fills/SVGStopElement.java
blob: d1ddc0a86e3d2bea6c0395edee68ce466b9da636 (plain) (tree)


























                                                                    
/*
 * 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();
}