javaquery/canvas/src/main/java/net/java/html/canvas/Canvas.java
author toni.epple@eppleton.de
Fri, 17 May 2013 12:15:01 +0200
branchcanvas
changeset 1115 ae51a8a61e57
parent 1113 f5e4e1665fa7
child 1119 73041c26cf4d
permissions -rw-r--r--
Extracting methods to the interface...
     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  * @author antonepple
    11  */
    12 public interface Canvas {
    13 
    14     GraphicsContext getContext();
    15 
    16     int getHeight();
    17 
    18     int getWidth();
    19 
    20     void setHeight(int height);
    21 
    22     void setWidth(int width);
    23     
    24 }