Refactoring frontend

This commit is contained in:
Lorenzo Iovino 2017-07-13 02:48:12 +02:00
parent 97c88c46bb
commit 10595f5bab
43 changed files with 1348 additions and 1120 deletions

View file

@ -1,7 +1,5 @@
package interfaces;
import models.Response;
import javax.swing.*;
import java.rmi.Remote;
import java.rmi.RemoteException;
@ -10,6 +8,5 @@ import java.rmi.RemoteException;
* Created by loke on 19/06/2017.
*/
public interface INotificationClient extends Remote{
Response sendInvite(String userName, DefaultListModel<String> users) throws RemoteException;
void sendInvite(String userName, DefaultListModel<String> users) throws RemoteException;
}