This is an abstract class. You never use this directly; it serves as a parent class for the specific declarations.
[Source]
# File lib/rexml/doctype.rb, line 205 205: def initialize src 206: super() 207: @string = src 208: end
# File lib/rexml/doctype.rb, line 210 210: def to_s 211: @string+'>' 212: end
See REXML::Formatters
# File lib/rexml/doctype.rb, line 217 217: def write( output, indent ) 218: output << to_s 219: end
[Validate]