Browse Source

GUISimulatorPathTableModel reads from new PathFullInfo interface.

git-svn-id: https://www.prismmodelchecker.org/svn/prism/prism/trunk@3467 bbc10eb1-c90d-0410-af57-cb519fbb1720
master
Dave Parker 15 years ago
parent
commit
2f5de7b714
  1. 6
      prism/src/userinterface/simulator/GUISimulatorPathTableModel.java

6
prism/src/userinterface/simulator/GUISimulatorPathTableModel.java

@ -31,7 +31,7 @@ package userinterface.simulator;
import java.util.*; import java.util.*;
import javax.swing.table.AbstractTableModel; import javax.swing.table.AbstractTableModel;
import simulator.PathFull;
import simulator.PathFullInfo;
import userinterface.simulator.SimulationView.*; import userinterface.simulator.SimulationView.*;
import userinterface.util.GUIGroupedTableModel; import userinterface.util.GUIGroupedTableModel;
import parser.ast.*; import parser.ast.*;
@ -45,7 +45,7 @@ public class GUISimulatorPathTableModel extends AbstractTableModel implements GU
private boolean pathActive; private boolean pathActive;
private ModulesFile parsedModel; private ModulesFile parsedModel;
private PathFull path;
private PathFullInfo path;
private RewardStructureValue rewardStructureValue; private RewardStructureValue rewardStructureValue;
private VariableValue variableValue; private VariableValue variableValue;
@ -67,7 +67,7 @@ public class GUISimulatorPathTableModel extends AbstractTableModel implements GU
this.pathActive = pathActive; this.pathActive = pathActive;
} }
public void setPath(PathFull path)
public void setPath(PathFullInfo path)
{ {
this.path = path; this.path = path;
} }

Loading…
Cancel
Save