Class TaskJuggler::AccountAttribute
In: lib/taskjuggler/Attributes.rb
Parent: AttributeBase

Methods

new   tjpId   to_s   to_tjp  

Public Class methods

[Source]

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

[Source]

# File lib/taskjuggler/Attributes.rb, line 30
    def AccountAttribute::tjpId
      'account'
    end

Public Instance methods

[Source]

# File lib/taskjuggler/Attributes.rb, line 34
    def to_s(query = nil)
      (v = get) ? v.id : ''
    end

[Source]

# File lib/taskjuggler/Attributes.rb, line 38
    def to_tjp
      (v = get)? v.id : ''
    end

[Validate]