KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.objectweb.celtix.bus.busimpl;
2
3 import org.objectweb.celtix.BusEvent;
4
5 /**
6  * A ManagedComponent Event that indicates that
7  * the ManagedComponent needs to be registered
8  * as an MBean with the MBean server.
9  */

10 public class ComponentCreatedEvent extends BusEvent {
11     public static final String JavaDoc COMPONENT_CREATED_EVENT = "COMPONENT_CREATED_EVENT";
12     /**
13      * Constructs a <code>ManagedComponentCreatedEvent</code> object.
14      *
15      * @param source The managed component object that to register.
16      */

17     public ComponentCreatedEvent(Object JavaDoc source) {
18         super(source, COMPONENT_CREATED_EVENT);
19     }
20 }
21
Popular Tags