?? itemhome.java
字號:
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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -