01: package org.objectweb.celtix.bus.management;
02:
03: import org.objectweb.celtix.management.Instrumentation;
04:
05: /**
06: * A Instrumentation Created Event that indicates that
07: * the Instumentation relat ManagedComponent needs to be registered
08: * as an MBean with the MBean server.
09: */
10: public class InstrumentationCreatedEvent extends InstrumentationEvent {
11:
12: /**
13: * Constructs a <code>InstrumenationCreatedEvent</code> object.
14: *
15: * @param source The instrumentation object that to register.
16: */
17: public InstrumentationCreatedEvent(Instrumentation source) {
18: super(source);
19: }
20: }
|