/** Method to get the previous component for focus */
 public Component getComponentBefore(Container focusCycleRoot, Component aComponent) {
   if (aComponent.equals(colValue)) return rowValue;
   else return colValue;
 }