Git Repository Public Repository

RRRRHHHH_Code

URLs

Copy to Clipboard

Diff Revisions d30bcc ... vs ccac99 ... for ruralHouses client/src/common/AccountInterface.java

Diff revisions: vs.
  @@ -3,12 +3,10 @@
3 3 import java.rmi.Remote;
4 4 import java.rmi.RemoteException;
5 5
6 - import domain.Account;
7 -
8 6 public interface AccountInterface extends Remote{
9 7
10 8
11 9 public boolean addAccount(int index) throws RemoteException;
12 10
13 - public boolean removeAccount(Account ac) throws RemoteException;
11 + public boolean removeAccount(int index) throws RemoteException;
14 12 }