jni 0.4.0

Rust bindings to the JNI
Documentation
// 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 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::*;

// For when you want to store a reference to a java object
mod global_ref;
pub use self::global_ref::*;