Back to project page candymem.
The source code is released under:
GNU General Public License
If you think the Android project candymem listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package se.tube42.kidsmem; // w w w .ja v a2 s . c o m /* * This is an interface to OS dependent stuff. * The system puts an impletation into World.sys */ public interface SystemHandler { public void showMessage(String msg); public void setFullscreen(boolean fs); }