1. /*
  2. * @(#)HyperlinkListener.java 1.7 00/02/02
  3. *
  4. * Copyright 1997-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 javax.swing.event;
  11. import java.util.EventListener;
  12. /**
  13. * HyperlinkListener
  14. *
  15. * @version 1.7 02/02/00
  16. * @author Timothy Prinzing
  17. */
  18. public interface HyperlinkListener extends EventListener {
  19. /**
  20. * Called when a hypertext link is updated.
  21. *
  22. * @param e the event responsible for the update
  23. */
  24. void hyperlinkUpdate(HyperlinkEvent e);
  25. }