📄 shoppingcarthome.java
字号:
/*
* @author : Neelesh
* @Version : 1.0
*
* Development Environment : Oracle9i JDeveloper
* Name of the File : ShoppingCart.java
* Creation/Modification History :
*
* Neelesh 04-Oct-2002 Created
*
*/
package oracle.otnsamples.vsm.services;
//EJB
import java.rmi.RemoteException;
import javax.ejb.CreateException;
import javax.ejb.EJBHome;
/**
* The home interface for the ShoppingCart bean. The interface has a method
* to create an instance of the ShoppingCart bean.
*/
public interface ShoppingCartHome extends EJBHome {
/**
* Creates an instance of the ShoppingCart bean
* @return <b>ShoppingCart</b> Instance of ShoppingCart bean
* @throws <b>CreateException</b>
* @throws <b>RemoteException</b>
*/
ShoppingCart create() throws RemoteException,CreateException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -