# File lib/Borges/Component/SelectionDateTable.rb, line 68
  def select_date_row_index(aDate, rowIndex)
    unless self.hasSelection then
      @dateSelectionStart = @dateSelectionEnd = aDate
      @rowSelectionStart = @rowSelectionEnd = rowIndex
    else
      @dateSelectionEnd = aDate
      @rowSelectionEnd = rowIndex
    end
  end