KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > celtix > bus > management > InstrumentationEvent


1 package org.objectweb.celtix.bus.management;
2
3 import org.objectweb.celtix.BusEvent;
4 import org.objectweb.celtix.management.Instrumentation;
5
6
7
8
9
10 /**
11  * The <code>InstrumentationEvent</code> class, which is the base
12  * class for all Instrumentation events.
13  */

14 public class InstrumentationEvent extends BusEvent {
15     
16     /**
17      * Constant representing the Managed Bus Event ID.
18      */

19     public static final String JavaDoc MANAGED_BUS_EVENT = "org.objectweb.celtix.bus.managed.event";
20
21         
22     /**
23      * Constructs a <code>InstrumentationEvent</code> object.
24      *
25      * @param source The instrumentation object that originated this event.
26      */

27     public InstrumentationEvent(Instrumentation source) {
28         super(source, MANAGED_BUS_EVENT);
29     }
30     
31 }
32
Popular Tags