public void launchToJMVA() {
// New Converter by Bertoli Marco
ExactModel output = new ExactModel();
List res = ModelConverter.convertJSIMtoJMVA(model, output);
ExactWizard jmva = new ExactWizard(output);
// If problems are found, shows warnings
if (res.size() > 0) {
new WarningWindow(res, jmva, CommonConstants.JSIM, CommonConstants.JMVA).show();
}
}