# File lib/taskjuggler/Attributes.rb, line 645 def initialize(property, type, container) super end
# File lib/taskjuggler/Attributes.rb, line 649 def TaskDepListAttribute::tjpId 'taskdeplist' end
# File lib/taskjuggler/Attributes.rb, line 653 def to_s(query = nil) out = [] get.each { |t, onEnd| out << t.fullId } out.join(", ") end
# File lib/taskjuggler/Attributes.rb, line 659 def to_tjp out = [] get.each { |t, onEnd| out << t.fullId } @type.id + " " + out.join(', ') end