Advertisement
Guest User

Untitled

a guest
Dec 8th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.33 KB | None | 0 0
  1. package controller;
  2.  
  3. import java.io.FileNotFoundException;
  4.  
  5. import model.SelectionTable;
  6. import model.Table;
  7.  
  8. public interface BackEndWriter {
  9.  
  10.     public SelectionTable readTable(Table table) throws FileNotFoundException;
  11.  
  12.     public void writeTable(SelectionTable selectionTable, Table table) throws FileNotFoundException;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement