void init(JNIEnv* env, jlong address) {
   mEnv = env;
   mJavaInput = NULL;
   mBreakIterator = toBreakIterator(address);
   mChars = NULL;
   mStatus = U_ZERO_ERROR;
   mUText = NULL;
 }
static void NativeBreakIterator_closeImpl(JNIEnv*, jclass, jlong address) {
  delete toBreakIterator(address);
}
extern "C" void Java_libcore_icu_NativeBreakIterator_closeImpl(JNIEnv*, jclass, jlong address) {
  delete toBreakIterator(address);
}