[Source]
# File lib/rexml/doctype.rb, line 236 236: def initialize( src ) 237: super() 238: @entity = src 239: end
# File lib/rexml/doctype.rb, line 240 240: def to_s 241: @entity 242: end
# File lib/rexml/doctype.rb, line 243 243: def write( output, indent ) 244: output << @entity 245: end
[Validate]