Return the public identifier for the current document event.

Return the public identifier of the document entity or of the external parsed entity in which the markup triggering the event appears. Return null if no public identifier is available.

Property definitions

sax $ SAXLocator :: public_id
	# Return the public identifier for the current document event.
	#
	# Return the public identifier of the document
	# entity or of the external parsed entity in which the markup
	# triggering the event appears.
	# Return `null` if no public identifier is available.
	fun public_id: nullable String is abstract
lib/sax/sax_locator.nit:40,2--46,43

sax $ SAXLocatorImpl :: public_id
	redef var public_id = null is writable
lib/sax/helpers/sax_locator_impl.nit:45,2--39