javaquery/canvas/src/main/java/net/java/html/canvas/Pattern.java
author Anton Epple <toni.epple@eppleton.de>
Mon, 27 May 2013 08:30:18 +0200
branchcanvas
changeset 1144 5bf850c5b7f1
parent 1136 591d06d8e06f
permissions -rw-r--r--
Readded Image and ImageData to have the complete API again. No need to use Data in API anymore. Added caching to Image. Image are not required to be added to the page anymore, but are created in javaScript instead.
toni@1119
     1
/**
toni@1119
     2
 * Back 2 Browser Bytecode Translator Copyright (C) 2012 Jaroslav Tulach
toni@1119
     3
 * <jaroslav.tulach@apidesign.org>
toni@1119
     4
 *
toni@1119
     5
 * This program is free software: you can redistribute it and/or modify it under
toni@1119
     6
 * the terms of the GNU General Public License as published by the Free Software
toni@1119
     7
 * Foundation, version 2 of the License.
toni@1119
     8
 *
toni@1119
     9
 * This program is distributed in the hope that it will be useful, but WITHOUT
toni@1119
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
toni@1119
    11
 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
toni@1119
    12
 * details.
toni@1119
    13
 *
toni@1119
    14
 * You should have received a copy of the GNU General Public License along with
toni@1119
    15
 * this program. Look for COPYING file in the top folder. If not, see
toni@1119
    16
 * http://opensource.org/licenses/GPL-2.0.
toni@1111
    17
 */
toni@1111
    18
package net.java.html.canvas;
toni@1111
    19
toni@1111
    20
/**
toni@1111
    21
 *
toni@1111
    22
 * @author antonepple
toni@1111
    23
 */
toni@1132
    24
 public final class Pattern extends Style{
toni@1129
    25
    
toni@1144
    26
    Image imageResource; 
toni@1129
    27
    String repeat;
toni@1129
    28
toni@1144
    29
    Pattern(Image imageResource, String repeat) {
toni@1144
    30
        this.imageResource = imageResource;
toni@1131
    31
        this.repeat = repeat;
toni@1131
    32
    }
toni@1131
    33
    
toni@1144
    34
    public Image getImageResource() {
toni@1144
    35
        return imageResource;
toni@1129
    36
    }
toni@1129
    37
toni@1144
    38
    public void setImageResource(Image imageResource) {
toni@1144
    39
        this.imageResource = imageResource;
toni@1129
    40
    }
toni@1129
    41
toni@1129
    42
    public String getRepeat() {
toni@1129
    43
        return repeat;
toni@1129
    44
    }
toni@1129
    45
toni@1129
    46
    public void setRepeat(String repeat) {
toni@1129
    47
        this.repeat = repeat;
toni@1129
    48
    }
toni@1129
    49
    
toni@1129
    50
    
toni@1111
    51
    
toni@1111
    52
}