public class ECFactoryJava extends ECFactoryBase
Java言語版ExecutionContextインスタンス生成用Factoryクラスです。
| Modifier and Type | Field and Description | 
|---|---|
protected java.lang.String | 
m_name
生成対象のExecutionContextクラス名の完全修飾名(フルパスのクラス名) 
 | 
| Constructor and Description | 
|---|
ECFactoryJava(java.lang.String name)
コンストラクタです。 
 | 
| Modifier and Type | Method and Description | 
|---|---|
ExecutionContextBase | 
create()
生成対象のExecutionContextクラスのインスタンスを生成します。 
 | 
ExecutionContextBase | 
destroy(ExecutionContextBase comp)
ExecutionContextのインスタンスを破棄します。 
 | 
java.lang.String | 
name()
生成対象のExecutionContextの完全修飾名(フルパスのクラス名)を取得します。 
 | 
public ECFactoryJava(java.lang.String name)
コンストラクタです。
name - 生成対象のExecutionContextクラス名の完全修飾名(フルパスのクラス名)public java.lang.String name()
生成対象のExecutionContextの完全修飾名(フルパスのクラス名)を取得します。
name in class ECFactoryBasepublic ExecutionContextBase create()
生成対象のExecutionContextクラスのインスタンスを生成します。
create in class ECFactoryBasepublic ExecutionContextBase destroy(ExecutionContextBase comp)
ExecutionContextのインスタンスを破棄します。
destroy in class ECFactoryBasecomp - 破棄対象ExecutionContextインスタンス