Class TaskJuggler::BookingListAttribute
In: lib/taskjuggler/Attributes.rb
Parent: ListAttributeBase

Methods

new   tjpId   to_s   to_tjp  

Public Class methods

[Source]

# File lib/taskjuggler/Attributes.rb, line 107
    def initialize(property, type, container)
      super
    end

[Source]

# File lib/taskjuggler/Attributes.rb, line 111
    def BookingListAttribute::tjpId
      'bookinglist'
    end

Public Instance methods

[Source]

# File lib/taskjuggler/Attributes.rb, line 115
    def to_s(query = nil)
      get.collect{ |x| x.to_s }.join(', ')
    end

[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

[Validate]