KickJava   Java API By Example, From Geeks To Geeks.

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


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

8 package org.mmbase.core.event;
9
10 import java.util.Properties JavaDoc;
11
12 /**
13  * This interface is the common type for custom EventListener interfaces. to
14  * create such a interface extend this one and add a method that will receive an
15  * event of the specific type.
16  *
17  * @author Ernst Bunders
18  * @since MMBase-1.8
19  */

20 public interface EventListener {
21
22 }
23
Popular Tags