Package com.ibm.websphere.ras
Interface TraceComponentChangeListener
-
public interface TraceComponentChangeListener
Simple change listener interface that is driven asTraceComponent
instances are registered and updated. Register through theTrConfigurator.addTraceComponentListener(TraceComponentChangeListener)
method
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
traceComponentRegistered(TraceComponent tc)
Callback indicating the specified trace component was registered.void
traceComponentUpdated(TraceComponent tc)
Callback indicating the specified trace component was updated.
-
-
-
Method Detail
-
traceComponentRegistered
void traceComponentRegistered(TraceComponent tc)
Callback indicating the specified trace component was registered.- Parameters:
tc
- theTraceComponent
that was registered
-
traceComponentUpdated
void traceComponentUpdated(TraceComponent tc)
Callback indicating the specified trace component was updated.- Parameters:
tc
- theTraceComponent
that was updated
-
-