sax :: XMLReader :: content_handler=
If the application does not register a content handler, all content events reported by the SAX parser will be silently ignored.
Applications may register a new or different handler in the middle of a parse, and the SAX parser must begin using the new handler immediately.
	# Allow an application to register a content event handler.
	#
	# If the application does not register a content handler, all
	# content events reported by the SAX parser will be silently
	# ignored.
	#
	# Applications may register a new or different handler in the
	# middle of a parse, and the SAX parser must begin using the new
	# handler immediately.
	fun content_handler=(handler: nullable ContentHandler) is abstract
					lib/sax/xml_reader.nit:213,2--222,67
				
	redef fun content_handler=(content_handler) do
		model.content_handler = content_handler
	end
					lib/saxophonit/saxophonit.nit:82,2--84,4
				
	redef var content_handler = null is writable
					lib/sax/helpers/xml_filter_impl.nit:51,2--45