class TaskJuggler::AccountAttribute

Public Class Methods

new(property, type, container) click to toggle source
Calls superclass method TaskJuggler::AttributeBase::new
# File lib/taskjuggler/Attributes.rb, line 26
def initialize(property, type, container)
  super
end
tjpId() click to toggle source
# File lib/taskjuggler/Attributes.rb, line 30
def AccountAttribute::tjpId
  'account'
end

Public Instance Methods

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