class TaskJuggler::TimeIntervalListAttribute
Public Class Methods
Source
# File lib/taskjuggler/Attributes.rb, line 336 def initialize(property, type, container) super end
Calls superclass method
TaskJuggler::ListAttributeBase::new
Source
# File lib/taskjuggler/Attributes.rb, line 340 def TimeIntervalListAttribute::tjpId 'intervallist' end
Public Instance Methods
Source
# File lib/taskjuggler/Attributes.rb, line 344 def to_s(query = nil) out = [] get.each { |i| out << i.to_s } out.join(", ") end
Source
# File lib/taskjuggler/Attributes.rb, line 350 def to_tjp out = [] get.each { |i| out << i.to_s } @type.id + " " + out.join(', ') end