auctionitem.java

来自「jdbc书」· Java 代码 · 共 21 行

JAVA
21
字号
package auction;



import javax.ejb.*;

import java.rmi.*;

import java.util.*;



public interface AuctionItem extends EJBObject {

   String getDescription() throws RemoteException;

   String getSeller() throws RemoteException;

   int getId() throws RemoteException;

   String getSummary() throws RemoteException;

   double getIncrement() throws RemoteException;

   double getHighBid() throws RemoteException; 

   int getBidCount() throws RemoteException; 

   String getHighBidder() throws RemoteException;

   Date getStartDate() throws RemoteException;

   Date getEndDate() throws RemoteException;

   double getStartPrice() throws RemoteException;

   int setHighBid(String buyer, double amount, double increment) throws RemoteException;

}

⌨️ 快捷键说明

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