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