📄 auctionitem.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -