[Source]
# File rexml/doctype.rb, line 184 def initialize( src ) super() @entity = src end
# File rexml/doctype.rb, line 188 def to_s @entity end
# File rexml/doctype.rb, line 191 def write( output, indent ) output << @entity output << "\n" end
[Validate]