KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > java > util > EventListener


1 /*
2  * @(#)EventListener.java 1.13 03/12/19
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7
8 package java.util;
9
10 /**
11  * A tagging interface that all event listener interfaces must extend.
12  * @since JDK1.1
13  */

14 public interface EventListener {
15 }
16
Popular Tags