?? systeminfoiado.java
字號(hào):
package iado;
import java.sql.SQLException;
/**
* @author lixiaoqing
*
*/
public interface SystemInfoIAdo {
/**
* @return
*/
public String selectBulletin() throws SQLException;
/**
* @return
*/
public int selectRowsPerPage() throws SQLException;
/**
* @param bulletin
*/
public void updateBulletin(String bulletin) throws SQLException;
/**
* @param rowsPerPage
*/
public void updateRowsPerPage(int rowsPerPage) throws SQLException;
/**
* @throws SQLException
*/
public void close() throws SQLException;
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -