* @param stats describes the selected object
* @param isUpdate set to true if this is just an update of the previously selected position
*/
public void addToTable(PickObjectStatistics stats, boolean isUpdate) {
TableQueryResult table = null;
TableDisplayTool tableDisplayTool = null;
// see if a table is already being displayed, and if so, use it
JComponent resultComponent = _navigator.getResultComponent();
if (resultComponent instanceof TableDisplayTool) {
tableDisplayTool = (TableDisplayTool) resultComponent;
table = tableDisplayTool.getTableDisplay().getTableQueryResult();
}
if (table == null) {
// no table being displayed: make a new table
table = _makeTable(stats);