mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
756 B
38 lines
756 B
************************** |
|
Install Callback Interface |
|
************************** |
|
.. highlight:: java |
|
.. class:: InstallCallbackInterface |
|
|
|
Callback interface for package installation or update. |
|
|
|
String getPackageName() |
|
----------------------- |
|
|
|
.. method:: String getPackageName() |
|
|
|
Get name of a package to be installed. |
|
|
|
:rtype: string; |
|
:return: returns package name, i.e. "OpenCV Manager Service" or "OpenCV library". |
|
|
|
void install() |
|
-------------- |
|
|
|
.. method:: void install() |
|
|
|
Installation of package has been approved. |
|
|
|
void cancel() |
|
------------- |
|
|
|
.. method:: void cancel() |
|
|
|
Installation of package has been cancelled. |
|
|
|
void wait_install() |
|
------------------- |
|
|
|
.. method:: void wait_install() |
|
|
|
Wait for package installation.
|
|
|