close.java
来自「Contents * Introduction * Installa」· Java 代码 · 共 42 行
JAVA
42 行
/* * @(#) Close 1.0 02/08/01 */package org.smartlib.pool.core;import java.sql.SQLException;/** * This interface is implemented by SmartStatement, SmartPreparedStatement * and SmartCallableStatement. This allows the SmartStament, * SmartPreparedStatement, and SmartCallableStatement to be closed through * this generic interface when auto-close is enabled. * * * @author Sachin Shekar Shetty * @version 1.0, 02/08/01 * */public interface Close { /** * This method closes the Object. Any further invoking of this object would * result in an exception. * * @exception SQLException */ public void close() throws SQLException; /** * This method returns true if the Object is already closed * * @return true if the Object is already closed * * @exception SQLException */ public boolean isClosed() throws SQLException;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?