*/
public void join() throws java.lang.InterruptedException {
Iterator threadIterator = threadMap.keySet().iterator();
while (threadIterator.hasNext()) {
SimulatorThread thread = (SimulatorThread)threadIterator.next();
thread.join();
}
}
/**
* The <code>stop()</code> method will terminate all the simulation threads. It is