/**
  * Sets the base model to use.
  *
  * @param value the base model
  * @param restoreSorting whether to restore the sorting
  */
 public synchronized void setUnsortedModel(TableModel value, boolean restoreSorting) {
   m_Model.setUnsortedModel(value, restoreSorting);
 }
 /**
  * Sets the base model to use. Discards any sorting.
  *
  * @param value the base model
  */
 public synchronized void setUnsortedModel(TableModel value) {
   m_Model.setUnsortedModel(value);
 }