Class TrackRecordReport::ReportColumnTotal
In: lib/track_record_report.rb
Parent: ReportElementaryCalculator

Object used to handle running column totals. The Report object creates one each time it adds a column. For each cell that is calculated, call the ReportColumnTotal‘s "add_cell" method to increment the running total for the column.

Methods

add_cell  

Public Instance methods

See above.

[Source]

      # File lib/track_record_report.rb, line 1152
1152:     def add_cell( cell_data )
1153:       add!( cell_data )
1154:     end

[Validate]