KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > teamkonzept > lib > ConfigurationListener


1 package com.teamkonzept.lib;
2
3 /**
4  * The Configuration Listener interface defines a callback method to allow
5  * implementing classes to be notified about changes in their configuration
6  * (Observer / Listener pattern). This may be useful for run-time
7  * configuration of arbitrary components.
8  *
9  * @version 1.0
10  * @since 1.0
11  * @author © 2001 Team-Konzept
12  */

13 public interface ConfigurationListener
14 {
15
16     // $Header: /cvsroot/webman-cms/source/webman/com/teamkonzept/lib/ConfigurationListener.java,v 1.2 2001/02/14 12:50:25 uli Exp $
17

18     // Method signatures.
19

20     /**
21      * Informs the listener about changes in its configuration.
22      *
23      * @exception com.teamkonzept.lib.TKException allows the listener
24      * to signal an error.
25      */

26     public abstract void configurationChanged ()
27         throws TKException;
28
29 }
30
Popular Tags