This is an abstract class. You never use this directly; it serves as a parent class for the specific declarations.
[Source]
# File rexml/doctype.rb, line 151 def initialize src super() @string = src end
# File rexml/doctype.rb, line 156 def to_s @string+'>' end
# File rexml/doctype.rb, line 160 def write( output, indent ) output << (' '*indent) if indent > 0 output << to_s end
[Validate]