-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathandroidextern.js
84 lines (70 loc) · 1.49 KB
/
androidextern.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/**
* @fileoverview This is an externs file.
* @externs
*/
const Android =
{
/* Nothing to be done in extern file */
};
/**
* @param {string} param
*/
Android.toJNI = function(param)
{
/* Nothing to be done in extern file */
};
/**
* @param {string} key
* @param {string} value
*/
Android.setStorage = function(key, value)
{
/* Nothing to be done in extern file */
};
/**
* @param {string} key
*/
Android.getStorage = function(key)
{
/* Nothing to be done in extern file */
};
/**
* @param {string} fileName
* @param {string} fileContents
*/
Android.download = function(fileName, fileContents)
{
/* Nothing to be done in extern file */
};
Android.stop = function()
{
/* Nothing to be done in extern file */
};
Android.getAppVer = function()
{
/* Nothing to be done in extern file */
};
Android.endCalculation = function()
{
/* Nothing to be done in extern file */
};
Android.getInformation = function(x, y)
{
/* Nothing to be done in extern file */
};
Android.moveGraphic = function(deltaX, deltaY)
{
/* Nothing to be done in extern file */
};
Android.drawPartialGraphic = function(xminDisp, xmaxDisp, yminDisp, ymaxDisp)
{
/* Nothing to be done in extern file */
};
Android.nbrChanged = function(value, inputBoxNbr, newWidth, newHeight)
{
/* Nothing to be done in extern file */
};
Android.getPixelArrayData = function(firstPixel, width, height)
{
/* Nothing to be done in extern file */
};