javaquery/canvas/src/main/java/net/java/html/canvas/ImageData.java
author toni.epple@eppleton.de
Fri, 17 May 2013 12:06:36 +0200
branchcanvas
changeset 1111 8c88d0f187d8
child 1119 73041c26cf4d
permissions -rw-r--r--
Extracting interfaces from JavaQuery API. Removed first (automatic) refactoring attempt and redid it manually.
toni@1111
     1
/*
toni@1111
     2
 * To change this template, choose Tools | Templates
toni@1111
     3
 * and open the template in the editor.
toni@1111
     4
 */
toni@1111
     5
package net.java.html.canvas;
toni@1111
     6
toni@1111
     7
toni@1111
     8
toni@1111
     9
/**
toni@1111
    10
 *
toni@1111
    11
 * @author antonepple
toni@1111
    12
 */
toni@1111
    13
public interface ImageData {
toni@1111
    14
toni@1111
    15
    public double getHeight();
toni@1111
    16
toni@1111
    17
    public double getWidth();
toni@1111
    18
    
toni@1111
    19
}