class TaskJuggler::TaskListAttribute
Public Class Methods
Source
# File lib/taskjuggler/Attributes.rb, line 668 def initialize(property, type, container) super end
Calls superclass method
TaskJuggler::ListAttributeBase::new
Source
# File lib/taskjuggler/Attributes.rb, line 672 def TaskListAttribute::tjpId 'tasklist' end
Public Instance Methods
Source
# File lib/taskjuggler/Attributes.rb, line 676 def to_s(query = nil) out = [] get.each { |t| out << t.fullId } out.join(", ") end
Source
# File lib/taskjuggler/Attributes.rb, line 682 def to_tjp out = [] get.each { |t| out << t.fullId } @type.id + " " + out.join(', ') end