KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > ca > directory > jxplorer > event > JXplorerListener


1 package com.ca.directory.jxplorer.event;
2
3 import java.util.EventListener JavaDoc;
4
5 /**
6  * The listener interface for receiving JXplorer events.
7  * The class that is interested in processing an JXplorer event
8  * implements this interface, and the object created with that
9  * class is registered with a component, using the component's
10  * <code>addJXplorerListener</code> method. When the JXplorer event
11  * occurs, that object's <code>JXplorerDNSelected</code> method is
12  * invoked.
13  *
14  * @see JXplorerEvent
15  *
16  * @author Chris Betts
17  */

18  
19 public interface JXplorerListener extends EventListener JavaDoc {
20
21     /**
22      * Invoked when an JXplorer occurs.
23      */

24     public void JXplorerDNSelected(JXplorerEvent e);
25
26 }
Popular Tags