Git Repository Public Repository

RRRRHHHH_Code

URLs

Copy to Clipboard
 
578bec184aad79cdf233d774c8f574c9de8438b8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package common;

import java.rmi.Remote;
import java.rmi.RemoteException;

import domain.Account;
import domain.Owner;

public interface AccountInterface extends Remote{
	

	public boolean addAccount(int index) throws RemoteException;
	
	public boolean removeAccount(Account ac) throws RemoteException;
}

Commits for RRRRHHHH_CoderuralHouses client/src/common/AccountInterface.java

Diff revisions: vs.
Revision Author Commited Message
578bec ... Diff Diff epinzolas001 Mon 18 May, 2015 11:44:38 +0000

New owners now can be created properly.

799949 ... Diff Diff epinzolas001 Mon 18 May, 2015 11:12:36 +0000

debugging

4f8bcc ... epinzolas001 Mon 18 May, 2015 09:49:54 +0000

Merge conflicts solutioned