source: tmcsimulator/branches/trunk/src/tmcsim/interfaces/CADClientInterface.java @ 82

Revision 82, 452 bytes checked in by jtorres, 9 years ago (diff)

Added socket client to ATMSDriver. Added socket server to FEPSim

Line 
1package tmcsim.interfaces;
2
3import java.rmi.Remote;
4import java.rmi.RemoteException;
5
6import tmcsim.client.cadclientgui.data.CADData;
7
8/**This interface exists for CADClient to communicate with Coordinator through the RMI. RMI requires that objects sent through implement
9 * an interface that extends Remote.
10 * @author Vincent
11 *
12 */
13
14public interface CADClientInterface extends Remote  {
15   
16    public void refresh() throws RemoteException;
17   
18}
Note: See TracBrowser for help on using the repository browser.