javaquery/canvas/src/main/java/net/java/html/canvas/IImageData.java
author toni.epple@eppleton.de
Tue, 21 May 2013 16:07:59 +0200
branchcanvas
changeset 1124 4613a6fe2862
parent 1119 javaquery/canvas/src/main/java/net/java/html/canvas/ImageData.java@73041c26cf4d
permissions -rw-r--r--
Refactored names to unpopular naming scheme, because (a) bck2brwsr Canvas implementation must be named Canvas due to mapping in bck2brwsr and I don't want interface and impl to have the same name. (b) with the "I" prefix at least it's consistent, even if nobody uses that anymore.
     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 /**
    23  *
    24  * @author antonepple
    25  */
    26 public interface IImageData {
    27 
    28     public double getHeight();
    29 
    30     public double getWidth();
    31     
    32 }