Property definitions

android $ Android_widget_CheckBox :: defaultinit
# Java class: android.widget.CheckBox
extern class Android_widget_CheckBox in "Java" `{ android.widget.CheckBox `}
	super Android_widget_CompoundButton

	# Java constructor: android.widget.CheckBox
	new (a: NativeContext) in "Java" `{
		return new android.widget.CheckBox(a);
	`}

	redef fun new_global_ref import sys, Sys.jni_env `{
		Sys sys = Android_widget_CheckBox_sys(self);
		JNIEnv *env = Sys_jni_env(sys);
		return (*env)->NewGlobalRef(env, self);
	`}

	redef fun pop_from_local_frame_with_env(jni_env) `{
		return (*jni_env)->PopLocalFrame(jni_env, self);
	`}
end
lib/android/ui/native_ui.nit:1059,1--1077,3