Exemplo n.º 1
0
 private void removeAllColor(boolean notify) {
   for (int it = 0; it < taxa.getNumTaxa(); it++) setColor(it, MesquiteLong.unassigned);
   if (notify) table.repaintAll();
 }
Exemplo n.º 2
0
 private void setColor(int it, long c) {
   if (it < 0) return;
   taxa.setAssociatedLong(colorNameRef, it, c);
   table.redrawCell(-1, it);
 }
Exemplo n.º 3
0
 private void removeColor(int it, boolean notify) {
   setColor(it, MesquiteLong.unassigned);
   if (notify) table.redrawCell(-1, it);
 }