Back to project page crop.
The source code is released under:
Apache License
If you think the Android project crop 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 net.flask.crop; //ww w .ja va2 s . c o m import net.flask.crop.ui.BTN; public class PressEvent { private final BTN btn; public PressEvent(BTN btn) { this.btn = btn; } public BTN getBtn() { return btn; } }