Normand Briere
2019-04-22 a9e12f6c508810604c8c91ee15451776b08ce1a1
timeflow/app/ui/ImportDelimitedPanel.java
....@@ -24,7 +24,7 @@
2424 SchemaPanel schemaPanel;
2525 boolean exitOnClose=false; // for testing!
2626 JScrollPane scroller;
27
- TFModel model;
27
+ TimeflowModel model;
2828 JLabel numLinesLabel=new JLabel();
2929
3030 // for testing:
....@@ -33,7 +33,7 @@
3333 System.out.println("Starting test of ImportEditor");
3434 String file="data/probate.tsv";
3535 String[][] data=DelimitedFormat.readArrayGuessDelim(file, System.out);
36
- ImportDelimitedPanel editor=new ImportDelimitedPanel(new TFModel());
36
+ ImportDelimitedPanel editor=new ImportDelimitedPanel(new TimeflowModel());
3737 editor.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
3838 editor.setFileName(file);
3939 editor.setData(data);
....@@ -42,7 +42,7 @@
4242 editor.exitOnClose=true;
4343 }
4444
45
- public ImportDelimitedPanel(final TFModel model)
45
+ public ImportDelimitedPanel(final TimeflowModel model)
4646 {
4747 super("Import File");
4848 this.model=model;