01: package org.objectweb.celtix.bus.management;
02:
03: import org.objectweb.celtix.management.Instrumentation;
04:
05: /**
06: * A <code>InstrumenationEvent</code> indicating that the specified
07: * <code>Instrumentation</code> related managed component needs to be deregistered from the mbean server.
08: */
09: public class InstrumentationRemovedEvent extends InstrumentationEvent {
10:
11: /**
12: * Constructs a <code>Instrumentation</code> object.
13: *
14: * @param source The Instrumentation object associated with this event.
15: */
16: public InstrumentationRemovedEvent(Instrumentation source) {
17: super(source);
18: }
19: }
|