Interface IInstantiatorTracer
-
- All Known Implementing Classes:
AbstractVilTracer,StreamVilTracer,VilTracer
public interface IInstantiatorTracerA tracer for instantiators.- Author:
- Holger Eichelberger
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidtraceError(java.lang.String message)Trace an error (usually going to System.err in an instantiator).voidtraceMessage(java.lang.String message)Trace a message (usually going to System.out in an instantiator).
-
-
-
Method Detail
-
traceMessage
void traceMessage(java.lang.String message)
Trace a message (usually going to System.out in an instantiator).- Parameters:
message- the message to be traced
-
traceError
void traceError(java.lang.String message)
Trace an error (usually going to System.err in an instantiator).- Parameters:
message- the message to be traced
-
-