EventImpl evt = (EventImpl)event;
// VALIDATE -- must have been initialized at least once, must have
// a non-null non-blank name.
if(!evt.initialized || evt.type == null || evt.type.equals(""))
throw new EventException(EventException.UNSPECIFIED_EVENT_TYPE_ERR,
"DOM010 Unspecified event type");
// If nobody is listening for this event, discard immediately
LCount lc = LCount.lookup(evt.getType());
if (lc.captures + lc.bubbles + lc.defaults == 0)