class PPCurses::MultipleColumnDataSource

Values in the constructor is expected to be a two sided array

Public Instance Methods

object_value_for(aTableview, column, row_index) click to toggle source

Called by the table view to return the data object associated with the specified row and column.

# File lib/ppcurses/table_view.rb, line 202
def object_value_for(aTableview, column, row_index)
  @values[row_index][column]
end