KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > core > event > AllEventListener


1 /*
2  * Created on 30-sep-2005
3  *
4  * This software is OSI Certified Open Source Software.
5  * OSI Certified is a certification mark of the Open Source Initiative.
6  *
7  * The license (Mozilla version 1.0) can be read at the MMBase site.
8  * See http://www.MMBase.org/license
9  */

10 package org.mmbase.core.event;
11
12
13 /**
14  * This is a listener interface for every type of event. Primarily created for the
15  * CluserManager, which has to propagate all local events int the mmbase cluster.
16  * @author Ernst Bunders
17  * @since 1.8
18  *
19  */

20 public interface AllEventListener extends EventListener {
21     public void notify(Event event);
22 }
23
Popular Tags