[Source]
# File lib/rexml/doctype.rb, line 230 230: def initialize( src ) 231: super() 232: @entity = src 233: end
# File lib/rexml/doctype.rb, line 234 234: def to_s 235: @entity 236: end
# File lib/rexml/doctype.rb, line 237 237: def write( output, indent ) 238: output << @entity 239: end
[Validate]