?? order.java
字號:
package order.ejb;
import javax.ejb.EJBObject;
import java.rmi.RemoteException;
import java.util.*;
public interface Order extends EJBObject {
// 獲得訂單項目
public ArrayList getOrderItems()
throws RemoteException;
// 獲得訂單編號
public String getOrder_id()
throws RemoteException;
// 獲得訂單者賬號
public String getUser_id()
throws RemoteException;
// 獲得訂單總價格
public int getTotalPrice()
throws RemoteException;
// 更新訂單的總價格
public void setTotalPrice(int totalPrice)
throws RemoteException;
// 更新訂單項目
public void setOrderItems(ArrayList orderItems)
throws RemoteException;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -