/*...............................................................................................................*/
 boolean selected(Taxa taxa, int it, int myColumn) {
   if (taxa.getSelected(it)) {
     return true;
   }
   if (table != null && myColumn >= 0) {
     if (table.isCellSelectedAnyWay(myColumn, it)) return true;
   }
   return false;
 }