2024-01-10 18:54:00 +01:00
|
|
|
/* Copyright (C) 2015-2024 Andreas Shimokawa, Carsten Pfeiffer
|
2017-03-10 14:53:19 +01:00
|
|
|
|
|
|
|
This file is part of Gadgetbridge.
|
|
|
|
|
|
|
|
Gadgetbridge is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Affero General Public License as published
|
|
|
|
by the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Gadgetbridge is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
2024-01-10 18:54:00 +01:00
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>. */
|
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
|
|
|
|
|
|
|
/**
|
2016-03-30 22:53:08 +02:00
|
|
|
* Allows device specific code to be executed just before the installation starts
|
2015-08-11 12:04:45 +02:00
|
|
|
*/
|
2015-08-17 18:07:47 +02:00
|
|
|
void onStartInstall(GBDevice device);
|
2015-08-06 02:17:38 +02:00
|
|
|
}
|