| |
技术文档>>JAVA>>新手入门>>基础入门>查看文档 |
|
| |
java核心代码例程之:rmiexample.java |
|
| |
文章作者:未知 文章来源:水木森林 |
|
| |
查看:165次 录入:管理员--2007-11-17 |
|
| |
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; }
|
|