protected void switchToSimulator() {
JSIMModel output = new JSIMModel();
// New Converter by Bertoli Marco
List res = ModelConverter.convertJMVAtoJSIM(data, output);
JSIMMain jsim = new JSIMMain(output);
jsim.show();
// If problems are found, shows warnings
if (res.size() > 0) {
new WarningWindow(res, jsim, CommonConstants.JMVA, CommonConstants.JSIM).show();
}