Is the retrieval of the specified property supported given the current context?

Parameter:

  • name: property name, which is a fully-qualified URI.

Property definitions

sax $ XMLReader :: property_readable
	# Is the retrieval of the specified property supported given the current context?
	#
	# Parameter:
	#
	# * `name`: property name, which is a fully-qualified URI.
	fun property_readable(name: String): Bool is abstract
lib/sax/xml_reader.nit:115,2--120,54

saxophonit $ XophonReader :: property_readable
	redef fun property_readable(name) do
		return model.property_readable(name)
	end
lib/saxophonit/saxophonit.nit:111,2--113,4

sax $ XMLFilterImpl :: property_readable
	redef fun property_readable(name) do
		if parent == null then
			return false
		else
			return parent.property_readable(name)
		end
	end
lib/sax/helpers/xml_filter_impl.nit:154,2--160,4