public void setObserverColor(Color color) {
   this.getContentPane().setBackground(color);
   countingWatchP.setBackground(color);
   showTableP.setTablePanelColor(color);
 }
 public void renewCountingWatch() {
   countingWatchP.setTime(mainFrame.getCountingWatchTime());
   countingWatchP.repaint();
 }
 public void stopCountingWatch() {
   countingWatchP.stopWatch();
 }
 public void resetCountingWatch() {
   countingWatchP.resetWatch();
 }
 public void startCountingWatch(boolean continueWatchTime) {
   countingWatchP.startWatch(continueWatchTime);
 }