Back to project page FallApp.
The source code is released under:
MIT License
If you think the Android project FallApp 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 ie.lc.fallApp; //from ww w . ja v a 2s .c om public class Interlock { private boolean lock; public boolean isLocked() { return lock; } public void setLocked( boolean lock ) { this.lock = lock; } }