class TaskJuggler::DateAttribute
Public Class Methods
new(property, type, container)
click to toggle source
Calls superclass method
TaskJuggler::AttributeBase::new
# File lib/taskjuggler/Attributes.rb, line 202 def initialize(property, type, container) super end
tjpId()
click to toggle source
# File lib/taskjuggler/Attributes.rb, line 214 def DateAttribute::tjpId 'date' end
Public Instance Methods
to_s(query = nil)
click to toggle source
# File lib/taskjuggler/Attributes.rb, line 206 def to_s(query = nil) if (v = get) v.to_s(query ? query.timeFormat : '%Y-%m-%d') else 'Error' end end