Property definitions

dom $ PCDATA :: defaultinit
# PCDATA is any kind of non-xml formatted text
class PCDATA
	super XMLEntity

	# Any string containing non XML-reserved characters
	var content: String

	redef fun to_s do return content
end
lib/dom/xml_entities.nit:137,1--145,3