dashboard
repositories
activity
search
login
Normand Briere
/
GrafreeD
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
Fix out of memory crash with TimeUnit.
Normand Briere
2018-12-21
dcda2c5fa15e63daad67f5720a2f726e34f8cd71
[~nbriere/GrafreeD.git]
/
timeflow
/
format
/
file
/
Export.java
1
2
3
4
5
6
7
8
9
10
package timeflow.format.file;
import timeflow.model.*;
import java.io.BufferedWriter;
public interface Export {
public String getName();
public void export(TimeflowModel model, BufferedWriter out) throws Exception;
}