Normand Briere
2019-04-22 a9e12f6c508810604c8c91ee15451776b08ce1a1
timeflow/format/file/HtmlFormat.java
....@@ -9,7 +9,7 @@
99
1010 public class HtmlFormat implements Export
1111 {
12
- TFModel model;
12
+ TimeflowModel model;
1313 java.util.List<Field> fields;
1414 Field title;
1515
....@@ -17,12 +17,12 @@
1717 {
1818 }
1919
20
- public HtmlFormat(TFModel model)
20
+ public HtmlFormat(TimeflowModel model)
2121 {
2222 setModel(model);
2323 }
2424
25
- public void setModel(TFModel model)
25
+ public void setModel(TimeflowModel model)
2626 {
2727 this.model = model;
2828 fields = model.getDB().getFields();
....@@ -30,7 +30,7 @@
3030 }
3131
3232 @Override
33
- public void export(TFModel model, BufferedWriter out) throws Exception
33
+ public void export(TimeflowModel model, BufferedWriter out) throws Exception
3434 {
3535 setModel(model);
3636 out.write(makeHeader());