itemhome.java

来自「《J2EE专业项目实例开发》源代码」· Java 代码 · 共 10 行

JAVA
10
字号
 import java.util.Collection;
 import java.rmi.RemoteException;
 import javax.ejb.*;

public interface ItemHome extends EJBHome
{
	public Item create(int itemCode,String title, String rate,String itemDescription, String singer, String quantityOnHand, String type,String releaseDate) throws RemoteException,CreateException;
	public Item findByPrimaryKey(int itemCode) throws FinderException,RemoteException;
	public Collection findByType(String type)throws FinderException,RemoteException;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?