1 package org.objectweb.celtix.bus.management;2 3 import org.objectweb.celtix.management.Instrumentation;4 5 6 7 /**8 * A <code>InstrumenationEvent</code> indicating that the specified9 * <code>Instrumentation</code> related managed component needs to be deregistered from the mbean server.10 */11 public class InstrumentationRemovedEvent extends InstrumentationEvent {12 13 /**14 * Constructs a <code>Instrumentation</code> object.15 *16 * @param source The Instrumentation object associated with this event.17 */18 public InstrumentationRemovedEvent(Instrumentation source) {19 super(source);20 }21 }22