Receive notification of the beginning of a document.

The SAX parser will invoke this method only once, before any other event callbacks (except for document_locator).

SEE: end_document

Property definitions

sax $ ContentHandler :: start_document
	# Receive notification of the beginning of a document.
	#
	# The SAX parser will invoke this method only once, before any
	# other event callbacks (except for `document_locator`).
	#
	# SEE: `end_document`
	fun start_document do end
lib/sax/content_handler.nit:71,2--77,26

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

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