pagestatementfactory.java
来自「本项目是基于展示新闻的一款产品。在本系统中用户可以自定义栏目及新闻分类 发布新」· Java 代码 · 共 31 行
JAVA
31 行
/**
*
*/
package cn.handson.model.service.dao.page;
/**
* @author Administrator
*
*/
public class PageStatementFactory {
/**
* @return
*/
public static PagedStatement newMysqlInstance(){
return new PagedStatementMysqlImpl();
}
/**
* @return
*/
public static PagedStatement newSqlServerInstance(){
return new PagedStatementSqlServerImpl();
}
/**
* @return
*/
public static PagedStatement newOracleInstance(){
return new pagedStatementOracleImpl();
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?