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.
     1 /*
     2  * To change this template, choose Tools | Templates
     3  * and open the template in the editor.
     4  */
     5 package net.java.html.canvas;
     6 
     7 
     8 
     9 /**
    10  *
    11  * @author antonepple
    12  */
    13 public interface ImageData {
    14 
    15     public double getHeight();
    16 
    17     public double getWidth();
    18     
    19 }