* Class: LAC * Method: load_customization * Signature: (Ljava/lang/String;)Jint */
| 80 | * Signature: (Ljava/lang/String;)Jint |
| 81 | */ |
| 82 | JNIEXPORT jint JNICALL Java_com_baidu_nlp_LAC_loadCustomization |
| 83 | (JNIEnv *env, jobject thisObj, jstring dict_path) |
| 84 | { |
| 85 | LAC *self = _get_self(env, thisObj); |
| 86 | return self->load_customization(env->GetStringUTFChars(dict_path, 0)); |
| 87 | } |
| 88 | |
| 89 | /* |
| 90 | * Class: LAC |
nothing calls this directly
no test coverage detected