summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/fills/SVGRadialGradientElement.java
blob: d320b5a12dcbfd8ca8c1f9442ed79be034d497cc (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
/*
 * SVGLinearGradientElement.java
 *
 * Created on April 13, 2007, 10:15 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.SVGAnimatedLength;

/**
 * The SVGRadialGradientElement  interface corresponds to the 'radialGradient' element.
 * @author kitfox
 */
public interface SVGRadialGradientElement extends SVGGradientElement
{
    /**
     * Corresponds to attribute cx on the given 'radialGradient'  element.
     */
    public SVGAnimatedLength getCx();
    /**
     * Corresponds to attribute cy on the given 'radialGradient'  element.
     */
    public SVGAnimatedLength getCy();
    /**
     * Corresponds to attribute r on the given 'radialGradient'  element.
     */
    public SVGAnimatedLength getR();
    /**
     * Corresponds to attribute fx on the given 'radialGradient'  element.
     */
    public SVGAnimatedLength getFx();
    /**
     * Corresponds to attribute fy on the given 'radialGradient'  element.
     */
    public SVGAnimatedLength getFy();
}