📄 warehouse.java
字号:
/**
@version 1.02 2004-08-15
@author Cay Horstmann
*/
import java.rmi.*;
import java.util.*;
/**
The remote interface for a warehouse with products.
*/
public interface Warehouse extends Remote
{
/**
Gets products that are good matches for a customer.
@param c the customer to match
@return an array list of matching products
*/
ArrayList<Product> find(Customer c) throws RemoteException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -