summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/fills/SVGLinearGradientElement.java
blob: 0f6cbcd2ee8a4dede4175837ce29cae6bd325271 (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
/*
 * 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 SVGLinearGradientElement  interface corresponds to the 'linearGradient' element.
 * @author kitfox
 */
public interface SVGLinearGradientElement extends SVGGradientElement
{
    /**
     * Corresponds to attribute x1 on the given 'linearGradient'  element.
     */
    public SVGAnimatedLength getX1();
    /**
     * Corresponds to attribute y1 on the given 'linearGradient'  element.
     */
    public SVGAnimatedLength getY1();
    /**
     * Corresponds to attribute x2 on the given 'linearGradient'  element.
     */
    public SVGAnimatedLength getX2();
    /**
     * Corresponds to attribute y2 on the given 'linearGradient'  element.
     */
    public SVGAnimatedLength getY2();
}