Class: TaskJuggler::TableReportColumn
- Defined in:
- lib/taskjuggler/reports/TableReportColumn.rb
Overview
This class holds some computed data that is used to render the TableReport Columns.
Instance Attribute Summary collapse
-
#end ⇒ Object
Returns the value of attribute end.
-
#start ⇒ Object
Returns the value of attribute start.
Instance Method Summary collapse
-
#initialize(startDate, endDate) ⇒ TableReportColumn
constructor
A new instance of TableReportColumn.
Constructor Details
#initialize(startDate, endDate) ⇒ TableReportColumn
Returns a new instance of TableReportColumn.
22 23 24 25 |
# File 'lib/taskjuggler/reports/TableReportColumn.rb', line 22 def initialize(startDate, endDate) @start = startDate @end = endDate end |
Instance Attribute Details
#end ⇒ Object
Returns the value of attribute end.
20 21 22 |
# File 'lib/taskjuggler/reports/TableReportColumn.rb', line 20 def end @end end |
#start ⇒ Object
Returns the value of attribute start.
20 21 22 |
# File 'lib/taskjuggler/reports/TableReportColumn.rb', line 20 def start @start end |