📄 handlerfactory.java.svn-base
字号:
package ase.assignment.sts.api;
import java.rmi.Remote;
import java.rmi.RemoteException;
public interface HandlerFactory extends Remote {
CustomerHandler getCustomerHandler() throws RemoteException;
PortfolioHandler getPortfolioHandler() throws RemoteException;
StockHandler getStockHandler() throws RemoteException;
/**
* Tests the factory is active
*
* @return
* @throws RemoteException
*/
boolean isActive() throws RemoteException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -