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

Revision 2, 452 bytes checked in by jdalbey, 10 years ago (diff)

Initial Import of project files

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.