Advertisement
Guest User

Untitled

a guest
Jul 17th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. package server.interfaces;
  2.  
  3.  
  4. import server.classes.IDOverFlowException;
  5. import server.classes.Playlist;
  6. import server.mvc.*;
  7. import client.mvc.View;
  8.  
  9. import java.io.Serializable;
  10. import java.rmi.RemoteException;
  11.  
  12. public interface Controller extends Serializable {
  13. void link(Model model, View view);
  14.  
  15. void loadbtn(View view);
  16.  
  17. void savebtn(View view);
  18.  
  19. void addallbtn(View view);
  20.  
  21. void addtoplaylistbtn(View view);
  22.  
  23. void nextbtn(View view);
  24.  
  25. void backbtn(View view);
  26.  
  27. void deleteplaylist(View view);
  28.  
  29. void commitbtn(View view);
  30.  
  31. void loadlib(String path, Playlist allsongs, View view) throws RemoteException, IDOverFlowException;
  32.  
  33. void loadPlaylist(Playlist playlist) throws RemoteException;
  34.  
  35. void playpauseSong(View view);
  36.  
  37. void playSong(server.classes.Song s, View view);
  38.  
  39. void stopsong(View view);
  40.  
  41. void pauseSong(server.classes.Song s);
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement