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
// wrappers arount jni pointer types that add lifetimes and other functionality.
mod jvalue;
pub use self::jvalue::*;

mod jmethodid;
pub use self::jmethodid::*;

mod jstaticmethodid;
pub use self::jstaticmethodid::*;

mod jfieldid;
pub use self::jfieldid::*;

mod jstaticfieldid;
pub use self::jstaticfieldid::*;

mod jobject;
pub use self::jobject::*;

mod jthrowable;
pub use self::jthrowable::*;

mod jclass;
pub use self::jclass::*;

mod jstring;
pub use self::jstring::*;

mod jmap;
pub use self::jmap::*;

mod jlist;
pub use self::jlist::*;

mod jbytebuffer;
pub use self::jbytebuffer::*;

// For storing a reference to a java object
mod global_ref;
pub use self::global_ref::*;

// For automatic local ref deletion
mod auto_local;
pub use self::auto_local::*;

mod release_mode;
pub use self::release_mode::*;

// For automatic pointer-based generic array release
mod auto_array;
pub use self::auto_array::*;

// For automatic pointer-based primitive array release
mod auto_primitive_array;

pub use self::auto_primitive_array::*;