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.



23
24
25
26
# File 'lib/taskjuggler/reports/TableReportColumn.rb', line 23

def initialize(startDate, endDate)
  @start = startDate
  @end = endDate
end

Instance Attribute Details

#endObject

Returns the value of attribute end.



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

def end
  @end
end

#startObject

Returns the value of attribute start.



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

def start
  @start
end