# File lib/taskjuggler/Attributes.rb, line 125 def initialize(property, type, container) super end
# File lib/taskjuggler/Attributes.rb, line 129 def BooleanAttribute::tjpId 'boolean' end
# File lib/taskjuggler/Attributes.rb, line 133 def to_s(query = nil) get ? 'true' : 'false' end
# File lib/taskjuggler/Attributes.rb, line 137 def to_tjp @type.id + ' ' + (get ? 'yes' : 'no') end