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