コード例 #1
0
const log4cxx::helpers::Class&
ADARA::ComBus::Log4cxxAppender::getClass() const
{
    return getStaticClass();
}
コード例 #2
0
void JNIHelper::callStaticVoidMethod(const char* className,const char* methodName){
	jclass clazz=getStaticClass(className);
	jmethodID methodID=getStaticMethod(clazz,methodName,"()V");
	getEnv()->CallStaticVoidMethod(clazz,methodID);
}