org.soybeanMilk.core
类 DefaultExecutor

java.lang.Object
  继承者 org.soybeanMilk.core.DefaultExecutor
所有已实现的接口:
Executor

public class DefaultExecutor
extends java.lang.Object
implements Executor

执行器的默认实现。

作者:
earthAngry@gmail.com

构造方法摘要
DefaultExecutor(Configuration configuration)
           
 
方法摘要
 Executable execute(Executable executable, ObjectSource objSource)
          执行,并返回可执行对象
 Executable execute(java.lang.String executableName, ObjectSource objSource)
          执行,并返回可执行对象
 Configuration getConfiguration()
          获取执行器使用的配置对象
 void setConfiguration(Configuration configuration)
           
 
从类 java.lang.Object 继承的方法
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

构造方法详细信息

DefaultExecutor

public DefaultExecutor(Configuration configuration)
方法详细信息

getConfiguration

public Configuration getConfiguration()
从接口 Executor 复制的描述
获取执行器使用的配置对象

指定者:
接口 Executor 中的 getConfiguration
返回:

setConfiguration

public void setConfiguration(Configuration configuration)

execute

public Executable execute(java.lang.String executableName,
                          ObjectSource objSource)
                   throws ExecuteException,
                          ExecutableNotFoundException
从接口 Executor 复制的描述
执行,并返回可执行对象

指定者:
接口 Executor 中的 execute
参数:
executableName - 可执行对象名称
objSource - 对象源
抛出:
ExecuteException
ExecutableNotFoundException

execute

public Executable execute(Executable executable,
                          ObjectSource objSource)
                   throws ExecuteException
从接口 Executor 复制的描述
执行,并返回可执行对象

指定者:
接口 Executor 中的 execute
参数:
executable - 可执行对象
objSource - 对象源
返回:
抛出:
ExecuteException