locatableservice.java
来自「struts+hibernate3的源程序」· Java 代码 · 共 23 行
JAVA
23 行
package org.helpsoft.servicelocator;
import org.helpsoft.exception.*;
/**
* Services have to implement the LocatebleService interface.
*
* @author cao guangxin - www.relationinfo.com
*/
public interface LocatableService {
/**
* init.
* @throws GenericBusinessException the business exception.
*/
void init() throws GenericBusinessException;
/**
* destroy.
* @throws GenericBusinessException the business exception.
*/
void destroy() throws GenericBusinessException;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?