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

Methods

new   tjpId   to_s   to_tjp  

Public Class methods

[Source]

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

[Source]

# File lib/taskjuggler/Attributes.rb, line 282
    def FlagListAttribute::tjpId
      'flaglist'
    end

Public Instance methods

[Source]

# File lib/taskjuggler/Attributes.rb, line 286
    def to_s(query = nil)
      get.join(', ')
    end

[Source]

# File lib/taskjuggler/Attributes.rb, line 290
    def to_tjp
      "flags #{get.join(', ')}"
    end

[Validate]