kud1ing / rucaja

Calling the JVM from Rust via JNI
https://docs.rs/rucaja
Apache License 2.0
31 stars 7 forks source link

Add a JVM method signature builder #3

Open kud1ing opened 7 years ago

kud1ing commented 7 years ago

In order to resolve Java methods, one needs to declare type signatures like "(Ljava/lang/Object;)V" which is a bit unwieldy.

It would be nice to have an easy way to generate those strings. See https://docs.oracle.com/javase/1.5.0/docs/guide/jni/spec/types.html

treyzania commented 6 years ago

Partially done in #30.