📄 postgresqlactionbuilder.java
字号:
package org.speedframework.action.postgresql;
import org.speedframework.action.*;
/**
* Class PostgresqlActionBuilder
*
* @author <a href="mailto:santafeng@gmail.com"> lizf </a>
* @version $Revision:1.0.0, $Date: 2007-10-10 2:53:11 $
*/
public class PostgresqlActionBuilder extends AbstractActionBuilder{
/* (非 Javadoc)
* @see org.speedframework.action.IActionBuilderFactory#getDateBaseAction()
*/
public IDateBaseVersionAction getDateBaseAction() {
return new PostgresqlVersionAction();
}
/* (非 Javadoc)
* @see org.speedframework.action.IActionBuilderFactory#getLoadAction()
*/
public ILoadAction getLoadAction() {
return new PostgresqlLoadAction();
}
/* (非 Javadoc)
* @see org.speedframework.action.IActionBuilderFactory#getInsertAction()
*/
public IInsertAction getInsertAction() {
return new PostgresqlInsertAction();
}
/* (非 Javadoc)
* @see org.speedframework.action.IActionBuilderFactory#getResultsAction()
*/
public IResultsAction getResultsAction() {
return new PostgresqlResultsAction();
}
/* (非 Javadoc)
* @see org.speedframework.action.IActionBuilderFactory#getUpdateAction()
*/
public IUpdateAction getUpdateAction() {
return new PostgresqlUpdateAction();
}
/* (非 Javadoc)
* @see org.speedframework.action.IActionBuilderFactory#getDeleteAction()
*/
public IDeleteAction getDeleteAction() {
return new PostgresqlDeleteAction();
}
/* (非 Javadoc)
* @see org.speedframework.action.IActionBuilderFactory#getExecuteBatchAction()
*/
public IExecuteBatchAction getExecuteBatchAction() {
return new PostgresqlExecuteBatchAction();
}
/* (非 Javadoc)
* @see org.speedframework.action.IActionBuilderFactory#getSelectAction()
*/
public ISelectAction getSelectAction() {
return new PostgresqlSelectAction();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -