-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharray.go
More file actions
58 lines (45 loc) · 1.01 KB
/
array.go
File metadata and controls
58 lines (45 loc) · 1.01 KB
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
// Code generated by jnigen. DO NOT EDIT.
package jni
import "github.com/AndroidGoLab/jni/capi"
// Ensure import is used.
var _ capi.Object
// Array wraps the JNI jarray reference type.
type Array struct {
Object
}
// BooleanArray wraps the JNI jbooleanArray reference type.
type BooleanArray struct {
Array
}
// ByteArray wraps the JNI jbyteArray reference type.
type ByteArray struct {
Array
}
// CharArray wraps the JNI jcharArray reference type.
type CharArray struct {
Array
}
// ShortArray wraps the JNI jshortArray reference type.
type ShortArray struct {
Array
}
// IntArray wraps the JNI jintArray reference type.
type IntArray struct {
Array
}
// LongArray wraps the JNI jlongArray reference type.
type LongArray struct {
Array
}
// FloatArray wraps the JNI jfloatArray reference type.
type FloatArray struct {
Array
}
// DoubleArray wraps the JNI jdoubleArray reference type.
type DoubleArray struct {
Array
}
// ObjectArray wraps the JNI jobjectArray reference type.
type ObjectArray struct {
Array
}