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.
39 lines
756 B
39 lines
756 B
13 years ago
|
**************************
|
||
|
Install Callback Interface
|
||
|
**************************
|
||
|
.. highlight:: java
|
||
|
.. class:: InstallCallbackInterface
|
||
|
|
||
|
Callback interface for package installation or update.
|
||
|
|
||
|
String getPackageName()
|
||
|
-----------------------
|
||
|
|
||
|
.. method:: String getPackageName()
|
||
|
|
||
12 years ago
|
Get name of a package to be installed.
|
||
13 years ago
|
|
||
12 years ago
|
:rtype: string;
|
||
|
:return: returns package name, i.e. "OpenCV Manager Service" or "OpenCV library".
|
||
13 years ago
|
|
||
|
void install()
|
||
|
--------------
|
||
|
|
||
|
.. method:: void install()
|
||
|
|
||
12 years ago
|
Installation of package has been approved.
|
||
13 years ago
|
|
||
|
void cancel()
|
||
|
-------------
|
||
|
|
||
|
.. method:: void cancel()
|
||
|
|
||
12 years ago
|
Installation of package has been cancelled.
|
||
12 years ago
|
|
||
|
void wait_install()
|
||
|
-------------------
|
||
|
|
||
|
.. method:: void wait_install()
|
||
|
|
||
|
Wait for package installation.
|