bookshopremotebusiness.java
来自「精通NetBeans光盘源代码,很好很好的资料」· Java 代码 · 共 25 行
JAVA
25 行
package org.netbeans.bookshop;
import java.rmi.RemoteException;
/**
* This is the business interface for BookShop enterprise bean.
*/
public interface BookShopRemoteBusiness {
void setName(java.lang.String name) throws java.rmi.RemoteException;
java.lang.String getName() throws java.rmi.RemoteException;
void setPrice(java.lang.Double price) throws java.rmi.RemoteException;
java.lang.Double getPrice() throws java.rmi.RemoteException;
java.lang.String getId() throws java.rmi.RemoteException;
void setId(java.lang.String id) throws java.rmi.RemoteException;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?