asistencia/attendance-ubb/src/main/java/cl/cromer/ubb/attendance/ListenerDownload.java

11 lines
339 B
Java
Raw Normal View History

2017-12-06 21:01:09 -03:00
package cl.cromer.ubb.attendance;
/**
* This interface is used to listen for a file download to complete.
* It returns true on success. It returns false on failure or if the user cancels the download.
* @author Chris Cromer
* Copyright 2013 - 2016
*/
public interface ListenerDownload {
void onDownloadComplete(boolean result);
}