blob: 984b61e96d2ac52663572f6264157d323758aa5c [file] [log] [blame]
/*******************************************************************************
* Copyright (C) 2017 Fondazione Bruno Kessler.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Alberto Debiasi - initial API and implementation
******************************************************************************/
package org.polarsys.chess.verificationService.ui.commands.debug;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.emf.ecore.resource.Resource;
import org.polarsys.chess.service.gui.utils.SelectionUtil;
import eu.fbk.eclipse.standardtools.utils.ui.commands.AbstractAsyncJobCommand;
import eu.fbk.eclipse.standardtools.xtextService.ui.services.RuntimeErrorService;
public class RuntimeErrorsOnOSSFileCommand extends AbstractAsyncJobCommand {
private SelectionUtil chessSelectionUtil = SelectionUtil.getInstance();
private RuntimeErrorService ocraRuntimeErrorService = RuntimeErrorService.getInstance();
public RuntimeErrorsOnOSSFileCommand() {
super("Show Runtime Errors");
}
@Override
public void execJobCommand(ExecutionEvent event, IProgressMonitor monitor) throws Exception {
boolean showNoErrorPopup = true;
boolean usexTextValidation = true;
Resource modelResource = chessSelectionUtil.getSelectedModelResource();
ocraRuntimeErrorService.showOSSRuntimeErrors(modelResource, usexTextValidation,showNoErrorPopup, monitor);
}
}