- /*
 - * @(#)HyperlinkListener.java 1.7 00/02/02
 - *
 - * Copyright 1997-2000 Sun Microsystems, Inc. All Rights Reserved.
 - *
 - * This software is the proprietary information of Sun Microsystems, Inc.
 - * Use is subject to license terms.
 - *
 - */
 - package javax.swing.event;
 - import java.util.EventListener;
 - /**
 - * HyperlinkListener
 - *
 - * @version 1.7 02/02/00
 - * @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);
 - }