javaquery/canvas/src/main/java/net/java/html/canvas/LinearGradient.java
author toni.epple@eppleton.de
Fri, 17 May 2013 13:50:24 +0200
branchcanvas
changeset 1116 362fc74453f0
parent 1111 8c88d0f187d8
child 1119 73041c26cf4d
permissions -rw-r--r--
Pulled up more methods to the interface...
toni@1111
     1
/*
toni@1111
     2
 * To change this template, choose Tools | Templates
toni@1111
     3
 * and open the template in the editor.
toni@1111
     4
 */
toni@1111
     5
package net.java.html.canvas;
toni@1111
     6
toni@1111
     7
/**
toni@1111
     8
 *
toni@1111
     9
 * @author antonepple
toni@1111
    10
 */
toni@1111
    11
public interface LinearGradient {
toni@1116
    12
toni@1116
    13
    void addColorStop(double position, String color);
toni@1111
    14
    
toni@1111
    15
}