⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mssqlactionbuilder.java

📁 羽量级数据持久层开发框架
💻 JAVA
字号:
// $Id: MSSQLActionBuilder.java $Date: 2007-10-16 上午04:38:07 $ 
// $Id: MSSQLActionBuilder.java $Date: 2007-10-16 上午04:38:07 $ 
package org.speedframework.action.mssql;

import org.speedframework.action.AbstractActionBuilder;
import org.speedframework.action.IDateBaseVersionAction;
import org.speedframework.action.IDeleteAction;
import org.speedframework.action.IExecuteBatchAction;
import org.speedframework.action.IInsertAction;
import org.speedframework.action.ILoadAction;
import org.speedframework.action.IResultsAction;
import org.speedframework.action.ISelectAction;
import org.speedframework.action.IUpdateAction;

/**
 * Class MSSQLActionBuilder
 * 
 * @author <a href="mailto:santafeng@gmail.com"> lizf </a>
 * @version $Revision:1.0.0, $Date: 2007-10-16 上午04:38:07 $
 */
public class MSSQLActionBuilder extends AbstractActionBuilder {
	/*
	 * (非 Javadoc)
	 * 
	 * @see org.speedframework.action.IActionBuilderFactory#getLoadAction()
	 */
	public ILoadAction getLoadAction() {
		return new MSSQLLoadAction();
	}

	/*
	 * (非 Javadoc)
	 * 
	 * @see org.speedframework.action.IActionBuilderFactory#getInsertAction()
	 */
	public IInsertAction getInsertAction() {
		return new MSSQLInsertAction();
	}

	/*
	 * (非 Javadoc)
	 * 
	 * @see org.speedframework.action.IActionBuilderFactory#getResultsAction()
	 */
	public IResultsAction getResultsAction() {
		return new MSSQLResultsAction();
	}

	/*
	 * (非 Javadoc)
	 * 
	 * @see org.speedframework.action.IActionBuilderFactory#getUpdateAction()
	 */
	public IUpdateAction getUpdateAction() {
		return new MSSQLUpdateAction();
	}

	/*
	 * (非 Javadoc)
	 * 
	 * @see org.speedframework.action.IActionBuilderFactory#getDeleteAction()
	 */
	public IDeleteAction getDeleteAction() {
		return new MSSQLDeleteAction();
	}

	/*
	 * (非 Javadoc)
	 * 
	 * @see org.speedframework.action.IActionBuilderFactory#getExecuteBatchAction()
	 */
	public IExecuteBatchAction getExecuteBatchAction() {
		return new MSSQLExecuteBatchAction();
	}

	/*
	 * (非 Javadoc)
	 * 
	 * @see org.speedframework.action.IActionBuilderFactory#getSelectAction()
	 */
	public ISelectAction getSelectAction() {
		return new MSSQLSelectAction();
	}

	/*
	 * (非 Javadoc)
	 * 
	 * @see org.speedframework.action.AbstractActionBuilder#getDateBaseAction()
	 */
	public IDateBaseVersionAction getDateBaseAction() {
		return new MSSQLDateBaseVersionAction();
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -