📄 remotestockr_i.java
字号:
package Remote;
import Catalogue.*;
import Middle.*;
import java.rmi.*;
import javax.swing.ImageIcon;
/**
* Defines the RMI interface for read access to the stock object.
* @author Michael Alexander Smith
* @version 2.0
*/
public interface RemoteStockR_I
extends Remote
{
boolean exists( String number ) throws RemoteException, StockException;
Product getDetails( String number ) throws RemoteException, StockException;
ImageIcon getImage( String number ) throws RemoteException, StockException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -