Java核心代码例程之:RMIExample.java

发表于:2007-06-22来源:作者:点击数: 标签:

   
import java.rmi.*;

/**
 * Remote interface for the RMIExampleServer
 * @author Renga
 **/
public interface RMIExample extends Remote {

/**
 * Returns a string to the caller
 * @return A string
 * @throws RemoteException
 **/
public String sayHello() throws RemoteException;
}

原文转自:http://www.ltesting.net