1 package org.objectweb.celtix; 2 3 import java.util.*; 4 5 6 9 public class BusEvent extends EventObject { 10 13 public static final String BUS_EVENT = "org.objectweb.celtix.bus.event"; 14 15 private String eventId; 16 17 23 public BusEvent(Object source, String id) { 24 super(source); 25 eventId = id; 26 } 27 28 32 public String getID() { 33 return eventId; 34 } 35 } 36 | Popular Tags |