1. /*
  2. * @(#)EventListener.java 1.10 00/02/02
  3. *
  4. * Copyright 1996-2000 Sun Microsystems, Inc. All Rights Reserved.
  5. *
  6. * This software is the proprietary information of Sun Microsystems, Inc.
  7. * Use is subject to license terms.
  8. *
  9. */
  10. package java.util;
  11. /**
  12. * A tagging interface that all event listener interfaces must extend.
  13. * @since JDK1.1
  14. */
  15. public interface EventListener {
  16. }