class TaskJuggler::BookingListAttribute

Public Class Methods

new(property, type, container) click to toggle source
Calls superclass method TaskJuggler::ListAttributeBase::new
# File lib/taskjuggler/Attributes.rb, line 107
def initialize(property, type, container)
  super
end
tjpId() click to toggle source
# File lib/taskjuggler/Attributes.rb, line 111
def BookingListAttribute::tjpId
  'bookinglist'
end

Public Instance Methods

to_s(query = nil) click to toggle source
# File lib/taskjuggler/Attributes.rb, line 115
def to_s(query = nil)
  get.collect{ |x| x.to_s }.join(', ')
end
to_tjp() click to toggle source
# File lib/taskjuggler/Attributes.rb, line 119
def to_tjp
  raise "Don't call this method. This needs to be a special case."
end