remotestockr_i.java

来自「这是一个买卖系统,一个模拟的系统,根据下订单,看订单,买,等功能」· Java 代码 · 共 22 行

JAVA
22
字号
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 + =
减小字号Ctrl + -
显示快捷键?