class TaskJuggler::ListAttributeBase
The ListAttributeBase
is a specialized form of AttributeBase
for a list of values instead of a single value. It will be used as a base class for all attributes that hold lists.
Public Class Methods
Source
# File lib/taskjuggler/AttributeBase.rb, line 203 def ListAttributeBase::isList? true end
We overwrite this for ListAttributeBase
.
Source
# File lib/taskjuggler/AttributeBase.rb, line 190 def initialize(property, type, container) super end
Calls superclass method
TaskJuggler::AttributeBase::new