/* Context.java Purpose: Description: History: Fri Apr 2 09:17:31 TST 2010, Created by tomyeh Copyright (C) 2010 Potix Corporation. All Rights Reserved. */ package zk.canvas; /** * The context of the canvas. * It is the object returned by canvas.getContext("2d"). * We don't customize it but for the documentation only. * * <p>See also: * <ul> * <li><a href="https://developer.mozilla.org/en/Canvas_tutorial">Canvas tutorial</a> * <li><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element.html">Canvas specification</a>.</li> * </ul> * @author tomyeh */ public class Context { }