1 package org.objectweb.celtix.bus.management; 2 3 import org.objectweb.celtix.management.Instrumentation; 4 5 6 7 /** 8 * A Instrumentation Created Event that indicates that 9 * the Instumentation relat ManagedComponent needs to be registered 10 * as an MBean with the MBean server. 11 */ 12 public class InstrumentationCreatedEvent extends InstrumentationEvent { 13 14 15 /** 16 * Constructs a <code>InstrumenationCreatedEvent</code> object. 17 * 18 * @param source The instrumentation object that to register. 19 */ 20 public InstrumentationCreatedEvent(Instrumentation source) { 21 super(source); 22 } 23 } 24