Browse Source

Fix: Interval results show in GUI.

git-svn-id: https://www.prismmodelchecker.org/svn/prism/prism/trunk@2241 bbc10eb1-c90d-0410-af57-cb519fbb1720
master
Dave Parker 15 years ago
parent
commit
5bea84a402
  1. 4
      prism/src/userinterface/properties/GUIProperty.java

4
prism/src/userinterface/properties/GUIProperty.java

@ -274,8 +274,12 @@ public class GUIProperty
} else {
setStatus(STATUS_RESULT_FALSE);
}
} else if (result.getResult() instanceof Integer) {
setStatus(STATUS_RESULT_NUMBER);
} else if (result.getResult() instanceof Double) {
setStatus(STATUS_RESULT_NUMBER);
} else if (result.getResult() instanceof Interval) {
setStatus(STATUS_RESULT_NUMBER);
} else if (result.getResult() instanceof Exception) {
setStatus(STATUS_RESULT_ERROR);
} else {

Loading…
Cancel
Save