serviceinfo.java
来自「STRUTS数据库项目开发宝典」· Java 代码 · 共 19 行
JAVA
19 行
package org.helpsoft.servicelocator;
import org.helpsoft.exception.*;
/**
* Interface that determines the service.
*
* @author cao guangxin - www.relationinfo.com
*/
public interface ServiceInfo {
/**
* determine service.
* @return Locatable Service
* @throws ServiceInstantiationException service can not be started.
* @throws UnknownServiceException Unknown service
*/
LocatableService getService() throws ServiceInstantiationException, UnknownServiceException;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?