Class TaskJuggler::ListAttributeBase
In: lib/taskjuggler/AttributeBase.rb
Parent: AttributeBase

The ListAttributeBase is a specialized form of AttributeBase for a list of values instead of a single value. It will be used as a base class for all attributes that hold lists.

Methods

new   to_s  

Public Class methods

[Source]

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

Public Instance methods

[Source]

# File lib/taskjuggler/AttributeBase.rb, line 168
    def to_s
      get.join(', ')
    end

[Validate]