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