This is a specialized XMLElement to represent a comment.
[Source]
# File lib/taskjuggler/XMLElement.rb, line 201 def initialize(text = '') super(nil, {}) @text = text end
# File lib/taskjuggler/XMLElement.rb, line 206 def to_s(indent) '<!-- ' + @text + " -->\n#{' ' * indent}" end
[Validate]