Back to project page capturandro.
The source code is released under:
Apache License
If you think the Android project capturandro 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 no.finntech.capturandro.callbacks; /*from w w w.j a va 2s . c o m*/ import no.finntech.capturandro.asynctask.DownloadPicasaImageAsyncTask; public interface CapturandroCallback { void onCameraImportSuccess(String filename); void onCameraImportFailure(Exception e); void onPicasaImportStarted(DownloadPicasaImageAsyncTask downloadPicasaImageAsyncTask, String filename); void onPicasaImportSuccess(String filename); void onPicasaImportFailure(Exception e); }