TaskJuggler::AttributeBase
# File lib/Attributes.rb, line 217 217: def initialize(property, type) 218: super 219: 220: @value = Array.new 221: end
# File lib/Attributes.rb, line 223 223: def DependencyListAttribute::tjpId 224: 'dependencylist' 225: end
# File lib/Attributes.rb, line 227 227: def to_s(query = nil) 228: out = [] 229: @value.each { |t| out << t.task.fullId if t.task } 230: out.join(', ') 231: end
# File lib/Attributes.rb, line 233 233: def to_tjp 234: out = [] 235: @value.each { |taskDep| out << taskDep.task.fullId } 236: @type.id + " " + out.join(', ') 237: end
Disabled; run with --debug to generate this.
[Validate]
Generated with the Darkfish Rdoc Generator 1.1.6.