sax :: XMLReader :: property_writable
Parameter:
name: property name, which is a fully-qualified URI.
	# 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
				
	redef fun property_writable(name) do
		return model.property_writable(name)
	end
					lib/saxophonit/saxophonit.nit:115,2--117,4
				
	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