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

Parameter:

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

Property definitions

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

saxophonit $ XophonReader :: property_writable
	redef fun property_writable(name) do
		return model.property_writable(name)
	end
lib/saxophonit/saxophonit.nit:115,2--117,4

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