A ChargeSetListAttribute encapsulates a list of ChargeSet objects as PropertyTreeNode attributes.
# File lib/taskjuggler/Attributes.rb, line 161 def initialize(property, type, container) super end
# File lib/taskjuggler/Attributes.rb, line 165 def ChargeSetListAttribute::tjpId 'chargeset' end
# File lib/taskjuggler/Attributes.rb, line 169 def to_s(query = nil) out = [] get.each { |i| out << i.to_s } out.join(", ") end
# File lib/taskjuggler/Attributes.rb, line 175 def to_tjp out = [] get.each { |i| out << i.to_s } @type.id + " " + out.join(', ') end