KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > gjt > jclasslib > browser > config > classpath > ClasspathChangeListener


1 /*
2     This library is free software; you can redistribute it and/or
3     modify it under the terms of the GNU General Public
4     License as published by the Free Software Foundation; either
5     version 2 of the license, or (at your option) any later version.
6 */

7
8 package org.gjt.jclasslib.browser.config.classpath;
9
10 import java.util.EventListener JavaDoc;
11
12 /**
13     Listener that is informed of changes in the classpath.
14
15     @author <a HREF="mailto:jclasslib@ej-technologies.com">Ingo Kegel</a>
16     @version $Revision: 1.1 $ $Date: 2003/08/18 08:10:15 $
17 */

18 public interface ClasspathChangeListener extends EventListener JavaDoc {
19
20     /**
21      * Method that will be called when the classpath has changed.
22      * @param event the change event with detailed information.
23      */

24     public void classpathChanged(ClasspathChangeEvent event);
25 }
26
Popular Tags