Receive notification of the end of a document.

The SAX parser will invoke this method only once, and it will be the last method invoked during the parse. The parser shall not invoke this method until it has either abandoned parsing (because of an unrecoverable error) or reached the end of input.

SEE: start_document

Property definitions

sax $ ContentHandler :: end_document
	# Receive notification of the end of a document.
	#
	# The SAX parser will invoke this method only once, and it will
	# be the last method invoked during the parse. The parser shall
	# not invoke this method until it has either abandoned parsing
	# (because of an unrecoverable error) or reached the end of
	# input.
	#
	# SEE: `start_document`
	fun end_document do end
lib/sax/content_handler.nit:80,2--89,24

sax $ XMLFilterImpl :: end_document
	redef fun end_document do
		if content_handler != null then
			content_handler.end_document
		end
	end
lib/sax/helpers/xml_filter_impl.nit:270,2--274,4

saxophonit $ SAXEventLogger :: end_document
	redef fun end_document do
		log.push(["end_document"])
		super
	end
lib/saxophonit/testing.nit:355,2--358,4