Specify the class to be launched by the intent

Property definitions

android $ Intent :: set_class_name
	# Specify the class to be launched by the intent
	fun set_class_name(package_name: String, class_name: String): Intent
	do
		sys.jni_env.push_local_frame(2)
		intent.set_class_name(package_name.to_java_string, class_name.to_java_string)
		sys.jni_env.pop_local_frame
		return self
	end
lib/android/intent/intent_api10.nit:1293,2--1300,4