Skip to content
Snippets Groups Projects
Commit 1ae289f0 authored by Alberto Debiasi's avatar Alberto Debiasi
Browse files

fixed bug on command dialogs

Change-Id: I1d5de2fecea04449f4d31931fbce0e52ea3c9720
parent fa44f439
No related branches found
No related tags found
No related merge requests found
......@@ -115,12 +115,7 @@ public class CheckValidationAssertionPropertyCommand extends AbstractJobCommand
@Override
public void execJobCommand(ExecutionEvent event, IProgressMonitor monitor) throws Exception {
String[] expression = new String[1]; // It will be filled by the method
commandExecuted = ocraExecService.executeValidationAssertionProperty(umlSelectedComponent, selectedInstantiatedArchitectureConfiguration,umlSelectedResource,
isDiscreteTime, usexTextValidation, showPopups, ossFilepath, resultFilePath, monitor, true, expression,contextList);
if(commandExecuted){
conditions = createConditions(expression[0].split("#"));
}
}
......@@ -154,6 +149,14 @@ public class CheckValidationAssertionPropertyCommand extends AbstractJobCommand
@Override
public void execPostJobOperations(ExecutionEvent event, NullProgressMonitor nullProgressMonitor) throws Exception {
String[] expression = new String[1]; // It will be filled by the method
commandExecuted = ocraExecService.executeValidationAssertionProperty(umlSelectedComponent, selectedInstantiatedArchitectureConfiguration,umlSelectedResource,
isDiscreteTime, usexTextValidation, showPopups, ossFilepath, resultFilePath, nullProgressMonitor, true, expression,contextList);
if(commandExecuted){
conditions = createConditions(expression[0].split("#"));
}
if (commandExecuted) {
// Store the result
......
......@@ -112,12 +112,7 @@ public class CheckValidationContractPropertyCommand extends AbstractJobCommand {
@Override
public void execJobCommand(ExecutionEvent event, IProgressMonitor monitor) throws Exception {
String[] expression = new String[1]; // It will be filled by the method
commandExecuted = ocraExecService.executeValidationContractProperty(umlSelectedComponent, selectedInstantiatedArchitectureConfiguration, umlSelectedResource,
isDiscreteTime, usexTextValidation, showPopups, ossFilepath, resultFilePath, monitor, true, expression,contextList);
if(commandExecuted){
conditions = createConditions(expression[0].split("#"));
}
}
private EList<String> createConditions(String[] expression) {
......@@ -145,7 +140,15 @@ public class CheckValidationContractPropertyCommand extends AbstractJobCommand {
}
@Override
public void execPostJobOperations(ExecutionEvent event, NullProgressMonitor nullProgressMonitor) throws Exception {
public void execPostJobOperations(ExecutionEvent event, NullProgressMonitor monitor) throws Exception {
String[] expression = new String[1]; // It will be filled by the method
commandExecuted = ocraExecService.executeValidationContractProperty(umlSelectedComponent, selectedInstantiatedArchitectureConfiguration, umlSelectedResource,
isDiscreteTime, usexTextValidation, showPopups, ossFilepath, resultFilePath, monitor, true, expression,contextList);
if(commandExecuted){
conditions = createConditions(expression[0].split("#"));
}
if (commandExecuted) {
// Store the result
......
......@@ -87,6 +87,8 @@ public class ModelCheckingCommand extends AbstractJobCommand {
private boolean commandExecuted;
private EList<String> conditions;
private List<AnalysisContextElement> contextList;
String generatedSmvFilePath;
boolean internalExecution = true;
@Override
public void execPreJobOperations(ExecutionEvent event, IProgressMonitor monitor) throws Exception {
......@@ -144,8 +146,7 @@ public class ModelCheckingCommand extends AbstractJobCommand {
public void execJobCommand(ExecutionEvent event, IProgressMonitor monitor) throws Exception {
if (!isProgrExec) {
final String generatedSmvFilePath;
final boolean internalExecution = true;
if (isLeafComponent(umlSelectedComponent)) {
generatedSmvFilePath = smvExportService.exportSingleSmv(umlSelectedComponent, showPopups,
......@@ -163,13 +164,7 @@ public class ModelCheckingCommand extends AbstractJobCommand {
logger.debug("createMonolithicSMV done");
}
// Compose the conditions
String[] expression = new String[1]; // It will be filled by the
// method
commandExecuted = nuXmvExecService.executeModelChecking(generatedSmvFilePath, resultFilePath,
event.getParameter("algorithm_type"), event.getParameter("check_type"),
event.getParameter("property"), isProgrExec, internalExecution, expression,contextList);
conditions = createConditions(expression[0].split("#"));
}
}
......@@ -194,6 +189,14 @@ public class ModelCheckingCommand extends AbstractJobCommand {
@Override
public void execPostJobOperations(ExecutionEvent event, NullProgressMonitor nullProgressMonitor) throws Exception {
// Compose the conditions
String[] expression = new String[1]; // It will be filled by the
// method
commandExecuted = nuXmvExecService.executeModelChecking(generatedSmvFilePath, resultFilePath,
event.getParameter("algorithm_type"), event.getParameter("check_type"),
event.getParameter("property"), isProgrExec, internalExecution, expression,contextList);
conditions = createConditions(expression[0].split("#"));
// If requested to store the data, execute the command here, cannot be
// called later
if (commandExecuted) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment