/Users/lyon/j4p/src/net/rmi/Computable.java
|
1 /*
2 * Created by IntelliJ IDEA.
3 * User: root
4 * Date: Feb 12, 2002
5 * Time: 2:06:27 PM
6 * To change template for new interface use
7 * Code Style | Class Templates options (Tools | IDE Options).
8 */
9 package net.rmi;
10
11 import java.io.Serializable;
12 import java.rmi.Remote;
13 import java.rmi.RemoteException;
14
15 // The interface of an RMI object
16 // must subclass Remote.
17 //
18 // The methods to be remotely invoked
19 // must throw RemoteException.
20
21 public interface Computable extends Remote {
22 public void println(Serializable arg)
23 throws RemoteException;
24 }
25