📄 item.java
字号:
package webauction.ejb;
import java.rmi.RemoteException;
import java.sql.Date;
import javax.ejb.EJBObject;
public interface Item extends EJBObject {
Integer getId()
throws RemoteException;
String getDescription()
throws RemoteException;
String getCategory()
throws RemoteException;
User getUser()
throws RemoteException;
Date getAuctionEnd()
throws RemoteException;
double getTopBidAmount()
throws RemoteException;
void setTopBidAmount(double d)
throws RemoteException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -