pricerhome.java
来自「一本关于EJB的书」· Java 代码 · 共 21 行
JAVA
21 行
package examples;
import javax.ejb.*;
import java.rmi.RemoteException;
/**
* This is the home interface for Pricer. The
* container implements this interface; the
* implementation object is called the Home Object,
* and serves as a factory for EJB Objects.
*/
public interface PricerHome extends EJBHome {
/*
* This method creates the EJB Object.
*
* @return The newly created EJB Object.
*/
Pricer create() throws RemoteException, CreateException;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?