javaquery/canvas/src/main/java/net/java/html/canvas/LinearGradient.java
author Anton Epple <toni.epple@eppleton.de>
Wed, 22 May 2013 17:49:01 +0200
branchcanvas
changeset 1129 425c0c9ff88c
parent 1128 2dc980517b36
child 1130 6790eb381615
permissions -rw-r--r--
updated API
     1 /**
     2  * Back 2 Browser Bytecode Translator Copyright (C) 2012 Jaroslav Tulach
     3  * <jaroslav.tulach@apidesign.org>
     4  *
     5  * This program is free software: you can redistribute it and/or modify it under
     6  * the terms of the GNU General Public License as published by the Free Software
     7  * Foundation, version 2 of the License.
     8  *
     9  * This program is distributed in the hope that it will be useful, but WITHOUT
    10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
    11  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
    12  * details.
    13  *
    14  * You should have received a copy of the GNU General Public License along with
    15  * this program. Look for COPYING file in the top folder. If not, see
    16  * http://opensource.org/licenses/GPL-2.0.
    17  */
    18 package net.java.html.canvas;
    19 
    20 import java.util.HashMap;
    21 
    22 /**
    23  *
    24  * @author antonepple
    25  */
    26 public class LinearGradient implements Style {
    27 
    28     HashMap<Double,String> stops;
    29     
    30     double x0, y0, x1, y1;
    31 
    32     void addColorStop(double position, String color){
    33         if (stops == null) stops = new HashMap<>();
    34         stops.put(position, color);
    35     }
    36 
    37     public HashMap<Double, String> getStops() {
    38         return stops;
    39     }
    40 
    41     public void setStops(HashMap<Double, String> stops) {
    42         this.stops = stops;
    43     }
    44 
    45     public double getX0() {
    46         return x0;
    47     }
    48 
    49     public void setX0(double x0) {
    50         this.x0 = x0;
    51     }
    52 
    53     public double getY0() {
    54         return y0;
    55     }
    56 
    57     public void setY0(double y0) {
    58         this.y0 = y0;
    59     }
    60 
    61     public double getX1() {
    62         return x1;
    63     }
    64 
    65     public void setX1(double x1) {
    66         this.x1 = x1;
    67     }
    68 
    69     public double getY1() {
    70         return y1;
    71     }
    72 
    73     public void setY1(double y1) {
    74         this.y1 = y1;
    75     }
    76     
    77     
    78     
    79     
    80 }