⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 auctionitemhome.java

📁 jdbc书
💻 JAVA
字号:
package auction;

import javax.ejb.*;
import java.rmi.*;
import java.util.*;

public interface AuctionItemHome extends EJBHome {
  AuctionItem create(String theseller, String thedescription, int duration, double thestartprice, String thesummary) throws CreateException, RemoteException;
  AuctionItem create(int id,String theseller, String thedescription, int duration, double thestartprice, String thesummary, double increment) throws CreateException, RemoteException;
  AuctionItem findByPrimaryKey(AuctionItemPK id) throws FinderException, RemoteException;
  public Enumeration findAllItems() throws FinderException, RemoteException;
  public Enumeration findAllNewItems(java.sql.Date newtoday) throws FinderException, RemoteException;
  public Enumeration findAllClosedItems(java.sql.Date closedtoday) throws FinderException, RemoteException;
  public Enumeration findAllMatchingItems(String searchString) throws FinderException, RemoteException;

}

⌨️ 快捷键说明

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