The general action to be performed

intent.action = intent_action.view.to_s

Property definitions

android $ Intent :: action=
	# The general action to be performed
	#
	# ~~~nitish
	# # TODO better example
	# intent.action = intent_action.view.to_s
	# ~~~
	fun action=(action: String)
	do
		sys.jni_env.push_local_frame(1)
		intent.action = action.to_java_string
		sys.jni_env.pop_local_frame
	end
lib/android/intent/intent_api10.nit:634,2--645,4