rs4j/java/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Shared Java code embedded in all libraries.

/// Our native binary loader.
pub const NATIVE_LOADER: &str = include_str!("NativeLoader.java");

/// @adamheinrich's NativeUtils class: https://github.com/adamheinrich/native-utils
pub const NATIVE_UTILS: &str = include_str!("NativeUtils.java");

/// Tools for native libraries
pub const NATIVE_TOOLS: &str = include_str!("NativeTools.java");

/// The parent class
pub const PARENT_CLASS: &str = include_str!("ParentClass.java");

/// The native class
pub const NATIVE_CLASS: &str = include_str!("NativeClass.java");