/**
  * Set a char prediciton in the specified prediction column. The index into the prediction set is
  * used, not the actual column index.
  *
  * @param prediction the value of the prediciton
  * @param row the row of the table
  * @param predictionColIdx the index into the prediction set
  */
 public void setCharPrediction(char prediction, int row, int predictionColIdx) {
   predictionColumnsTable.setChar(prediction, row, predictionColIdx);
 }