📄 child.java
字号:
//声明本类定义在包examples.ejb.subclass中
package examples.ejb.subclass;
//声明本类引入的其它类或包
import java.rmi.RemoteException;
/**
* ChildBean的远程接口
*/
public interface Child extends Parent {
/**
* 这个方法与Child bean一致。
*
* @返回 String 消息
* @异常 RemoteException if there is
* a communications or systems failure
*/
public String childOnlyMethod()
throws RemoteException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -