1
2
3
4
5
6
7
8
9
10 package nl.tudelft.simulation.naming.listener;
11
12 import javax.naming.event.NamespaceChangeListener;
13 import javax.naming.event.ObjectChangeListener;
14
15 /***
16 * The interface to implement for namespace and object change listeners.
17 * <p>
18 * (c) copyright 2003 <a href="http://www.simulation.tudelft.nl">Delft
19 * University of Technology </a>, the Netherlands. <br>
20 * See for project information <a
21 * href="http://www.simulation.tudelft.nl">www.simulation.tudelft.nl </a> <br>
22 * License of use: <a href="http://www.gnu.org/copyleft/gpl.html">General Public
23 * License (GPL) </a>, no warranty <br>
24 *
25 * @author <a href="http://www.tbm.tudelft.nl/webstaf/peterja/index.htm">Peter
26 * Jacobs </a>
27 * @version 1.2 Apr 16, 2004
28 * @since 1.4
29 */
30 public interface ContextListenerInterface extends ObjectChangeListener,
31 NamespaceChangeListener
32 {
33
34 }