2015-08-06 02:17:38 +02:00
|
|
|
package nodomain.freeyourgadget.gadgetbridge.devices;
|
|
|
|
|
|
|
|
import nodomain.freeyourgadget.gadgetbridge.activities.InstallActivity;
|
|
|
|
import nodomain.freeyourgadget.gadgetbridge.impl.GBDevice;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Interface for the UI side of certain kinds of installation of things on the
|
|
|
|
* gadget device. The actual element to install will be passed in the constructor.
|
|
|
|
*/
|
|
|
|
public interface InstallHandler {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns true if this handler is able to install the element.
|
2015-08-06 23:17:41 +02:00
|
|
|
* #validateInstallation may only be called if this method returned true.
|
2015-08-06 02:17:38 +02:00
|
|
|
*/
|
2015-11-23 22:46:12 +01:00
|
|
|
boolean isValid();
|
2015-08-06 02:17:38 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks whether the installation of the 'element' on the device is possible
|
|
|
|
* and configures the InstallActivity accordingly (sets helpful texts,
|
|
|
|
* enables/disables the "Install" button, etc.
|
2015-08-17 18:07:47 +02:00
|
|
|
* <p/>
|
2015-08-06 23:17:41 +02:00
|
|
|
* Note: may only be called if #isValid previously returned true.
|
|
|
|
*
|
2015-08-06 02:17:38 +02:00
|
|
|
* @param installActivity the activity to interact with
|
2015-08-17 18:07:47 +02:00
|
|
|
* @param device the device to which the element shall be installed
|
2015-08-06 02:17:38 +02:00
|
|
|
*/
|
|
|
|
void validateInstallation(InstallActivity installActivity, GBDevice device);
|
2015-08-11 12:04:45 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Allows device specivic code to be execute just before the installation starts
|
|
|
|
*/
|
2015-08-17 18:07:47 +02:00
|
|
|
void onStartInstall(GBDevice device);
|
2015-08-06 02:17:38 +02:00
|
|
|
}
|