1 package prefuse.data.io; 2 3 import java.io.File ; 4 import java.io.OutputStream ; 5 6 import prefuse.data.Table; 7 8 13 public interface TableWriter { 14 15 21 public void writeTable(Table table, String filename) throws DataIOException; 22 23 29 public void writeTable(Table table, File f) throws DataIOException; 30 31 37 public void writeTable(Table table, OutputStream os) throws DataIOException; 38 39 } | Popular Tags |