| Revision 2,
452 bytes
checked in by jdalbey, 10 years ago
(diff) |
|
Initial Import of project files
|
| Line | |
|---|
| 1 | package tmcsim.interfaces; |
|---|
| 2 | |
|---|
| 3 | import java.rmi.Remote; |
|---|
| 4 | import java.rmi.RemoteException; |
|---|
| 5 | |
|---|
| 6 | import 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 | |
|---|
| 14 | public interface CADClientInterface extends Remote { |
|---|
| 15 | |
|---|
| 16 | public void refresh() throws RemoteException; |
|---|
| 17 | |
|---|
| 18 | } |
|---|
Note: See
TracBrowser
for help on using the repository browser.