* Obtains the reference to the framework Graphical User Interface
* @return A reference to the framework Graphical User Interface
*/
public SimulationGui getSimulationGui() {
if (simGui == null) {
simGui = new SimulationGui(this, properties);
simGui.setupComponents();
}
return(simGui);
}