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

Methods

new   tjpId   to_s   to_tjp  

Public Class methods

[Source]

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

[Source]

# File lib/taskjuggler/Attributes.rb, line 678
    def TaskListAttribute::tjpId
      'tasklist'
    end

Public Instance methods

[Source]

# File lib/taskjuggler/Attributes.rb, line 682
    def to_s(query = nil)
      out = []
      get.each { |t| out << t.fullId }
      out.join(", ")
    end

[Source]

# File lib/taskjuggler/Attributes.rb, line 688
    def to_tjp
      out = []
      get.each { |t| out << t.fullId }
      @type.id + " " + out.join(', ')
    end

[Validate]