hellointerface.java
来自「100多M的J2EE培训内容」· Java 代码 · 共 18 行
JAVA
18 行
package bible.rmi.example1;import weblogic.rmi.*;import java.rmi.*;/** * HelloInterface is a remote interface for saying hello. */public interface HelloInterface extends weblogic.rmi.Remote { /** * Responds with a greeting when client's say hello. * @returns A greeting from the implementing server. * @throws RemoteException */ public String sayHello() throws java.rmi.RemoteException;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?