Mercurial > MadButterfly
view Android/java/org/madbutterfly/InvalidStateException.java @ 1412:3e80b5cf8da2
Testcase for redrawing image.
There is a report from wycc that redrawing is not working for image
(maybe other shapes). This testcase shows that he may forget to call
redraw_changed() after updating transform matrix.
author | Thinker K.F. Li <thinker@codemud.net> |
---|---|
date | Wed, 06 Apr 2011 10:44:15 +0800 |
parents | c468e397614d |
children |
line wrap: on
line source
package org.madbutterfly; import java.lang.Exception; public class InvalidStateException extends Exception { public InvalidStateException() { super(); } public InvalidStateException(String msg) { super(msg); } }