* Class: LAC * Method: copy * Signature: (Jlong)V */
| 55 | * Signature: (Jlong)V |
| 56 | */ |
| 57 | JNIEXPORT void JNICALL Java_com_baidu_nlp_LAC_copy(JNIEnv *env, jobject thisObj, jlong selfPtr) |
| 58 | { |
| 59 | LAC *self = *(LAC **)&selfPtr; |
| 60 | if (self){ |
| 61 | _set_self(env, thisObj, new LAC(*self)); |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | /* |
| 66 | * Class: LAC |
nothing calls this directly
no test coverage detected