javaquery/canvas/src/main/java/net/java/html/canvas/Pattern.java
author Anton Epple <toni.epple@eppleton.de>
Thu, 23 May 2013 08:15:11 +0200
branchcanvas
changeset 1131 dec5f4e7d031
parent 1129 425c0c9ff88c
child 1132 368626597f1a
permissions -rw-r--r--
moved creation of Gradient and patterns to GC and removed it from GE
     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 class  Pattern implements Style{
    25     
    26     ImageData imageData; 
    27     String repeat;
    28 
    29     public Pattern(ImageData imageData, String repeat) {
    30         this.imageData = imageData;
    31         this.repeat = repeat;
    32     }
    33     
    34     public ImageData getImageData() {
    35         return imageData;
    36     }
    37 
    38     public void setImageData(ImageData imageData) {
    39         this.imageData = imageData;
    40     }
    41 
    42     public String getRepeat() {
    43         return repeat;
    44     }
    45 
    46     public void setRepeat(String repeat) {
    47         this.repeat = repeat;
    48     }
    49     
    50     
    51     
    52 }