javaquery/canvas/src/main/java/net/java/html/canvas/RadialGradient.java
author Anton Epple <toni.epple@eppleton.de>
Fri, 24 May 2013 12:29:58 +0200
branchcanvas
changeset 1141 69c81bdaf193
parent 1132 368626597f1a
permissions -rw-r--r--
added caching to style
     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 /**
    21  *
    22  * @author antonepple
    23  */
    24 public final class RadialGradient extends LinearGradient {
    25 
    26     
    27     private double r0, r1;
    28 
    29     RadialGradient(double x0, double y0, double r0, double x1, double y1, double r1) {
    30         super(x0, y0, x1, y1);
    31         this.r0 = r0;
    32         this.r1 = r1;
    33     }
    34 
    35     public double getR0() {
    36         return r0;
    37     }
    38 
    39     public void setR0(double r0) {
    40         this.r0 = r0;
    41     }
    42 
    43     public double getR1() {
    44         return r1;
    45     }
    46 
    47     public void setR1(double r1) {
    48         this.r1 = r1;
    49     }
    50 
    51     @Override
    52     public int hashCode() {
    53         int hash = super.hashCode();
    54         hash = 17 * hash + (int) (Double.doubleToLongBits(this.r0) ^ (Double.doubleToLongBits(this.r0) >>> 32));
    55         hash = 17 * hash + (int) (Double.doubleToLongBits(this.r1) ^ (Double.doubleToLongBits(this.r1) >>> 32));
    56 
    57         return hash;
    58     }
    59 
    60     @Override
    61     public boolean equals(Object obj) {
    62         if (obj == null) {
    63             return false;
    64         }
    65         if (getClass() != obj.getClass()) {
    66             return false;
    67         }
    68         if (!super.equals(obj)) {
    69             return false;
    70         }
    71         final RadialGradient other = (RadialGradient) obj;
    72         if (Double.doubleToLongBits(this.r0) != Double.doubleToLongBits(other.r0)) {
    73             return false;
    74         }
    75         if (Double.doubleToLongBits(this.r1) != Double.doubleToLongBits(other.r1)) {
    76             return false;
    77         }
    78         return true;
    79     }
    80 }