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.
36 lines
749 B
36 lines
749 B
13 years ago
|
**************************
|
||
|
Install Callback Interface
|
||
|
**************************
|
||
|
.. highlight:: java
|
||
|
.. module:: org.opencv.android
|
||
|
:platform: Android
|
||
|
:synopsis: Defines callback interface for package management.
|
||
|
|
||
|
.. 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: Return package name, i.e. "OpenCV Manager Service" or "OpenCV library"
|
||
|
|
||
|
void install()
|
||
|
--------------
|
||
|
|
||
|
.. method:: void install()
|
||
|
|
||
|
Installation of package is approved
|
||
|
|
||
|
void cancel()
|
||
|
-------------
|
||
|
|
||
|
.. method:: void cancel()
|
||
|
|
||
|
Installation if package was canceled
|