Browse Source

Bug fix (again) - to compile on Java 7 (via some import tidying/fixes).

git-svn-id: https://www.prismmodelchecker.org/svn/prism/prism/trunk@3524 bbc10eb1-c90d-0410-af57-cb519fbb1720
master
Dave Parker 15 years ago
parent
commit
3d3108419b
  1. 10
      prism/src/userinterface/GUIConstantsPicker.java
  2. 4
      prism/src/userinterface/GUISimulationPicker.java
  3. 2
      prism/src/userinterface/properties/GUIExperimentPicker.java
  4. 4
      prism/src/userinterface/simulator/GUIInitialStatePicker.java

10
prism/src/userinterface/GUIConstantsPicker.java

@ -40,9 +40,9 @@ import javax.swing.JTable;
import javax.swing.border.TitledBorder;
import javax.swing.table.AbstractTableModel;
import parser.*;
import parser.type.*;
import prism.*;
import parser.Values;
import prism.PrismException;
import prism.UndefinedConstants;
public class GUIConstantsPicker extends javax.swing.JDialog
{
@ -449,10 +449,10 @@ public class GUIConstantsPicker extends javax.swing.JDialog
class Constant
{
String name;
Type type;
parser.type.Type type;
Object value;
public Constant(String name, Type type, Object value)
public Constant(String name, parser.type.Type type, Object value)
{
this.name = name;
this.type = type;

4
prism/src/userinterface/GUISimulationPicker.java

@ -1134,10 +1134,10 @@ public class GUISimulationPicker extends javax.swing.JDialog implements KeyListe
class Value
{
String name;
Type type;
parser.type.Type type;
Object value;
public Value(String name, Type type, Object value)
public Value(String name, parser.type.Type type, Object value)
{
this.name = name;
this.type = type;

2
prism/src/userinterface/properties/GUIExperimentPicker.java

@ -498,7 +498,7 @@ public class GUIExperimentPicker extends javax.swing.JDialog
static class Rememberance
{
String varName;
Type type;
parser.type.Type type;
boolean isRange;
String singleValue;
String start;

4
prism/src/userinterface/simulator/GUIInitialStatePicker.java

@ -415,10 +415,10 @@ public class GUIInitialStatePicker extends javax.swing.JDialog implements KeyLis
class Value
{
String name;
Type type;
parser.type.Type type;
Object value;
public Value(String name, Type type, Object value)
public Value(String name, parser.type.Type type, Object value)
{
this.name = name;
this.type = type;

Loading…
Cancel
Save