Back to project page rgb-tool.
The source code is released under:
Apache License
If you think the Android project rgb-tool 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 com.fastebro.androidrgbtool.events; //from ww w.j av a2 s .c om /** * Created by danielealtomare on 26/12/14. */ public class PhotoScaledEvent { public final String photoPath; public final boolean deleteFile; public PhotoScaledEvent(String photoPath, boolean deleteFile) { this.photoPath = photoPath; this.deleteFile = deleteFile; } }