KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > swing > event > HyperlinkListener


1 /*
2  * @(#)HyperlinkListener.java 1.10 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 package javax.swing.event;
8
9
10 import java.util.EventListener JavaDoc;
11
12 /**
13  * HyperlinkListener
14  *
15  * @version 1.10 12/19/03
16  * @author Timothy Prinzing
17  */

18 public interface HyperlinkListener extends EventListener JavaDoc {
19
20     /**
21      * Called when a hypertext link is updated.
22      *
23      * @param e the event responsible for the update
24      */

25     void hyperlinkUpdate(HyperlinkEvent JavaDoc e);
26 }
27
28
Popular Tags