javaquery/api/src/main/java/org/apidesign/bck2brwsr/htmlpage/api/Canvas.java
Tue, 21 May 2013 16:10:52 +0200 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. (c) names are the same as in HTML5 Canvas Javascript API, so it's more familiar...
Fri, 17 May 2013 11:00:38 +0200 Started extracting GraphicsContext interface from JavaQuery API. First extracting methods with primitive parameters and return type.
Tue, 05 Mar 2013 07:57:16 +0100 Fixed typo
Mon, 04 Mar 2013 16:17:44 +0100 fixed bug in Canvas getWidth and getHeight
Sat, 26 Jan 2013 08:47:05 +0100 In order to support fields of the same name in subclasses we are now prefixing them with name of the class that defines them. To provide convenient way to access them from generated bytecode and also directly from JavaScript, there is a getter/setter function for each field. It starts with _ followed by the field name. If called with a parameter, it sets the field, with a parameter it just returns it.
Tue, 22 Jan 2013 17:28:01 +0100 API for accesing HTML canvas