📄 bookprice.java
字号:
// Fig. 7.10: BookPrice.java.
// BookPrice provides an interface to the Book Price Web service,
// which returns the price of a book, based on a specified ISBN.
package jws1casestudy.bookstore3;
// Java core packages
import java.rmi.*;
// Deitel packages
import jws1casestudy.pricefinder.common.PriceQuote;
public interface BookPrice extends Remote {
// service to obtain price of books based on ISBN
public PriceQuote getPrice( String ISBN )
throws RemoteException;
} // end interface BookPrice
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -