|
|||||||||
前のクラス 次のクラス | フレームあり フレームなし | ||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
java.lang.Objectjp.ne.mki.wedge.pub.client.logicclass.ClientLogicClassDelegate
public class ClientLogicClassDelegate
EngineManagerInterface経由でログ出力を行います。
ダイアログ表示の場合は StandardDialog
を用いてダイアログを表示します。
コンストラクタの概要 | |
---|---|
ClientLogicClassDelegate()
|
メソッドの概要 | |
---|---|
java.lang.String |
getConnectDB(RuleEngineInterface logicClass)
コネクションDBの取得 |
java.lang.String |
getRuleSql(RuleEngineInterface logicClass)
SQLの取得 |
void |
log(java.util.logging.Level level,
java.lang.String message,
java.lang.Throwable th,
RuleEngineInterface rule)
エラーLog の吐き出し LogicLogRecord (ロジッククラスのインスタンスが取得できるLogRecord)にてログ出力します。 |
void |
log(java.util.logging.LogRecord record)
LogRecordのログ出力 |
void |
setConnectDB(java.lang.String connDB,
RuleEngineInterface logicClass)
コネクションDBの設定 |
void |
setRuleSql(java.lang.String sql,
RuleEngineInterface logicClass)
SQLの設定 |
int |
showConfirmDialog(java.lang.String message,
RuleEngineInterface logicClass)
確認ダイアログの表示 実行Managerの設定がない場合には処理は行いません。 |
void |
showErrorDialog(java.lang.String message,
RuleEngineInterface logicClass)
エラーダイアログ表示 実行Managerの設定がない場合には処理は行いません。 |
void |
showInfomationDialog(java.lang.String message,
RuleEngineInterface logicClass)
情報ダイアログの表示 実行Managerの設定がない場合には処理は行いません。 |
void |
showWarningDialog(java.lang.String message,
RuleEngineInterface logicClass)
警告ダイアログの表示 実行Managerの設定がない場合には処理は行いません。 |
void |
writeErrorLog(java.lang.String message,
java.lang.Throwable th,
RuleEngineInterface logicClass)
エラーログを出力する WARNINGにてログ出力 とともに、FrameRunnerに対してエラーステータスの設定、 エラーダイアログの表示 も行います。 |
void |
writeLog(java.util.logging.Level level,
java.lang.String message,
java.lang.Throwable th,
RuleEngineInterface logicClass)
エラーログを出力 先頭にクラス名を追加して、ログ出力します。 |
void |
writeTraceLog(java.lang.String message,
RuleEngineInterface logicClass)
トレースログを出力する |
クラス java.lang.Object から継承されたメソッド |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
コンストラクタの詳細 |
---|
public ClientLogicClassDelegate()
メソッドの詳細 |
---|
public void showErrorDialog(java.lang.String message, RuleEngineInterface logicClass)
実行Managerの設定がない場合には処理は行いません。
jp.ne.mki.wedge.run.interfaces.ILogicClassDelegate
内の showErrorDialog
message
- logicClass
- public void showInfomationDialog(java.lang.String message, RuleEngineInterface logicClass)
実行Managerの設定がない場合には処理は行いません。
jp.ne.mki.wedge.run.interfaces.ILogicClassDelegate
内の showInfomationDialog
message
- logicClass
- public void showWarningDialog(java.lang.String message, RuleEngineInterface logicClass)
実行Managerの設定がない場合には処理は行いません。
jp.ne.mki.wedge.run.interfaces.ILogicClassDelegate
内の showWarningDialog
message
- logicClass
- public int showConfirmDialog(java.lang.String message, RuleEngineInterface logicClass)
実行Managerの設定がない場合には処理は行いません。
jp.ne.mki.wedge.run.interfaces.ILogicClassDelegate
内の showConfirmDialog
message
- logicClass
-
public void writeErrorLog(java.lang.String message, java.lang.Throwable th, RuleEngineInterface logicClass)
WARNINGにてログ出力 とともに、FrameRunnerに対してエラーステータスの設定、 エラーダイアログの表示 も行います。
jp.ne.mki.wedge.run.interfaces.ILogicClassDelegate
内の writeErrorLog
message
- th
- logicClass
- FrameRunnerInterface.setErrorStatus(String)
public void writeTraceLog(java.lang.String message, RuleEngineInterface logicClass)
jp.ne.mki.wedge.run.interfaces.ILogicClassDelegate
内の writeTraceLog
message
- logicClass
- public void log(java.util.logging.LogRecord record)
jp.ne.mki.wedge.run.interfaces.ILogicClassDelegate
内の log
record
- public void log(java.util.logging.Level level, java.lang.String message, java.lang.Throwable th, RuleEngineInterface rule)
LogicLogRecord (ロジッククラスのインスタンスが取得できるLogRecord)にてログ出力します。
level
- message
- th
- rule
- public void writeLog(java.util.logging.Level level, java.lang.String message, java.lang.Throwable th, RuleEngineInterface logicClass)
先頭にクラス名を追加して、ログ出力します。
クラス名の付与なしで、単純にログ出力したい場合には log メソッドを使用してください。
jp.ne.mki.wedge.run.interfaces.ILogicClassDelegate
内の writeLog
level
- message
- th
- logicClass
- public void setConnectDB(java.lang.String connDB, RuleEngineInterface logicClass)
jp.ne.mki.wedge.run.interfaces.ILogicClassDelegate
の記述:
jp.ne.mki.wedge.run.interfaces.ILogicClassDelegate
内の setConnectDB
public void setRuleSql(java.lang.String sql, RuleEngineInterface logicClass)
jp.ne.mki.wedge.run.interfaces.ILogicClassDelegate
の記述:
jp.ne.mki.wedge.run.interfaces.ILogicClassDelegate
内の setRuleSql
public java.lang.String getRuleSql(RuleEngineInterface logicClass)
jp.ne.mki.wedge.run.interfaces.ILogicClassDelegate
の記述:
jp.ne.mki.wedge.run.interfaces.ILogicClassDelegate
内の getRuleSql
public java.lang.String getConnectDB(RuleEngineInterface logicClass)
jp.ne.mki.wedge.run.interfaces.ILogicClassDelegate
の記述:
jp.ne.mki.wedge.run.interfaces.ILogicClassDelegate
内の getConnectDB
|
|||||||||
前のクラス 次のクラス | フレームあり フレームなし | ||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |