Class: TaskJuggler::TableReportColumn

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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

#endObject

Returns the value of attribute end.



20
21
22
# File 'lib/taskjuggler/reports/TableReportColumn.rb', line 20

def end
  @end
end

#startObject

Returns the value of attribute start.



20
21
22
# File 'lib/taskjuggler/reports/TableReportColumn.rb', line 20

def start
  @start
end