- /*
- * @(#)HyperlinkListener.java 1.10 03/12/19
- *
- * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
- * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
- */
- package javax.swing.event;
-
-
- import java.util.EventListener;
-
- /**
- * HyperlinkListener
- *
- * @version 1.10 12/19/03
- * @author Timothy Prinzing
- */
- public interface HyperlinkListener extends EventListener {
-
- /**
- * Called when a hypertext link is updated.
- *
- * @param e the event responsible for the update
- */
- void hyperlinkUpdate(HyperlinkEvent e);
- }
-