# File lib/taskjuggler/Attributes.rb, line 667 def initialize(property, type, container) super end
# File lib/taskjuggler/Attributes.rb, line 671 def TaskListAttribute::tjpId 'tasklist' end
# File lib/taskjuggler/Attributes.rb, line 675 def to_s(query = nil) out = [] get.each { |t| out << t.fullId } out.join(", ") end
# File lib/taskjuggler/Attributes.rb, line 681 def to_tjp out = [] get.each { |t| out << t.fullId } @type.id + " " + out.join(', ') end