#![no_main]
use jni_bind::{import_class, import_interface};
use jni_bind::{jboolean, jint, jlong, jchar};
import_class! {
"java/lang/Object";
Object;
constructor();
fn equals(&self, other: Object) -> jboolean;
fn hashCode(&self) -> jint;
fn notify(&self) -> ();
fn notifyAll(&self) -> ();
fn toString(&self) -> String;
fn wait(&self, timeout_millis: jlong, nanos: jint) -> ();
}
import_class!{
"java/lang/String";
String;
implements CharSequence;
}
import_interface!{
"java/lang/CharSequence";
CharSequence;
fn charAt(&self, index: jint) -> jchar;
}