public boolean isStopped() {
   return cepStatement.isRunning();
 }
 public void stop() {
   if (cepStatement.isRunning()) {
     cepStatement.stop();
   }
 }