Returns true if the intent contains the given category

Property definitions

android $ Intent :: has_category
	# Returns `true` if the intent contains the given category
	fun has_category(category: String): Bool
	do
		sys.jni_env.push_local_frame(1)
		var return_value = intent.has_category(category.to_java_string)
		sys.jni_env.pop_local_frame
		return return_value
	end
lib/android/intent/intent_api10.nit:739,2--746,4