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 144 def initialize src super() @string = src end
# File rexml/doctype.rb, line 149 def to_s @string+'>' end
# File rexml/doctype.rb, line 153 def write( output, indent ) output << (' '*indent) if indent > 0 output << to_s end
[Validate]