Given code like this:
// Java code in "Blat.java"
package com.example.app;
class Blat {
native void nativeToStuff();
}
// C++ Code in "Blat.cpp"
extern "C"
{
JNIEXPORT void JNICALL Java_com_example_app_Blat_nativeToStuff(JNIEnv* env, jobject jthis)
}
When I'm in "Blat.java" and I try to push_tag on "nativeToStuff", I'd like Slick to be smart enough to jump to Blat.CPP.
The name of the CPP function is mangled - based on the class, return type, and parameters of the Java class where the function is declared.
(The details of this are defined in the JDK).
Is there a way to get SLick to do this?