public interface Tracer
Interface to be implemented in order to handle the library trace.
This interface may be bound to the library with the
JFT.setTraceMode(Tracer)
invocation.
Method Summary | |
---|---|
void |
onTrace(Date timeStamp,
String module,
int traceLevel,
String message)
Called whenever a trace-message is availbale. |
Method Detail |
---|
void onTrace(Date timeStamp, String module, int traceLevel, String message)
This method is automatically invoked when the trace is
enabled and the trace-message level
traceLevel
>=
current trace level.
timeStamp
- date.module
- JFT library module name.traceLevel
- trace-message level: one of availables levels described in
JFT.setTraceLevel()
.message
- trace-message.