KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > celtix > bus > busimpl > ComponentRemovedEvent


1 package org.objectweb.celtix.bus.busimpl;
2
3 import org.objectweb.celtix.BusEvent;
4 /**
5  * A <code>ComponentEvent</code> indicating that the specified
6  * <code>ManagedComponent</code> needs to be deregistered from the mbean server.
7  */

8 public class ComponentRemovedEvent extends BusEvent {
9     public static final String JavaDoc COMPONENT_REMOVED_EVENT = "COMPONENT_REMOVED_EVENT";
10     /**
11      * Constructs a <code>ManagedComponentRemovedEvent</code> object.
12      *
13      * @param source The managed component object associated with this event.
14      */

15     public ComponentRemovedEvent(Object JavaDoc source) {
16         super(source, COMPONENT_REMOVED_EVENT);
17     }
18 }
19
Popular Tags