Skip to content
Snippets Groups Projects
Commit bce49794 authored by Michael Leuschel's avatar Michael Leuschel
Browse files

fix more copy & paste typos

parent 0713d26b
No related branches found
No related tags found
No related merge requests found
...@@ -18,7 +18,7 @@ import de.prob.exceptions.ProBException; ...@@ -18,7 +18,7 @@ import de.prob.exceptions.ProBException;
import de.prob.logging.Logger; import de.prob.logging.Logger;
/** /**
* This JobChangeAdapter presents the user the results of a deadlock freedom * This JobChangeAdapter presents the user the results of a assertion
* check. * check.
* *
* @see AssertionCheckHandler * @see AssertionCheckHandler
...@@ -60,13 +60,13 @@ public class AssertionCheckFinishedListener extends ProBJobFinishedListener { ...@@ -60,13 +60,13 @@ public class AssertionCheckFinishedListener extends ProBJobFinishedListener {
case COUNTER_EXAMPLE: case COUNTER_EXAMPLE:
dialogType = MessageDialog.WARNING; dialogType = MessageDialog.WARNING;
dialogTitle = "COUNTER-EXAMPLE FOUND!"; dialogTitle = "COUNTER-EXAMPLE FOUND!";
message = "The model contains a Counter-Example state, it will be shown in the state view."; message = "The model contains a Counter-Example state for the Context Theorems, it will be shown in the state view.";
displayCounterExample(command, animator); displayCounterExample(command, animator);
break; break;
case INTERRUPTED: case INTERRUPTED:
dialogType = MessageDialog.WARNING; dialogType = MessageDialog.WARNING;
dialogTitle = " Interrupt"; dialogTitle = " Interrupt";
message = "The deadlock check has been interrupted by the user or a time-out."; message = "The context theorem check has been interrupted by the user or a time-out.";
break; break;
default: default:
Logger.notifyUser("Unexpected result: " + result); Logger.notifyUser("Unexpected result: " + result);
...@@ -74,7 +74,7 @@ public class AssertionCheckFinishedListener extends ProBJobFinishedListener { ...@@ -74,7 +74,7 @@ public class AssertionCheckFinishedListener extends ProBJobFinishedListener {
} }
} }
if (shell.isDisposed()) { if (shell.isDisposed()) {
System.out.println("Deadlock freedom check finished: " System.out.println("Context Theorems check finished: "
+ dialogTitle); + dialogTitle);
} else { } else {
final Runnable runnable = new Runnable() { final Runnable runnable = new Runnable() {
......
...@@ -17,8 +17,7 @@ import de.prob.core.command.ConstraintBasedAssertionCheckCommand; ...@@ -17,8 +17,7 @@ import de.prob.core.command.ConstraintBasedAssertionCheckCommand;
import de.prob.logging.Logger; import de.prob.logging.Logger;
/** /**
* This handler provides a simple dialog to ask for an optional predicate to * This handler provides a way to start the static assertion checking command
* check for deadlocks in the model.
* *
* @author plagge * @author plagge
*/ */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment