📄 hellohome.java
字号:
/*
* Copyright 1999 by dreamBean Software,
* All rights reserved.
*/
package masteringrmi.helloejb.interfaces;
import java.rmi.RemoteException;
/**
* This is the home interface of the EJB component.
*
* It has one method that can be used to create a HelloWorld component.
*
* @see masteringrmi.helloejb.ejb.HelloBean
* @author Rickard 謆erg (rickard@dreambean.com)
*/
public interface HelloHome
extends javax.ejb.EJBHome
{
// Public --------------------------------------------------------
public HelloWorld create()
throws javax.ejb.CreateException, RemoteException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -