View Javadoc

1   /*
2    * @(#) ContextListenerInterface.java Apr 16, 2004
3    * 
4    * Copyright (c) 2003 Delft University of Technology Jaffalaan 5, 2628 BX Delft,
5    * the Netherlands All rights reserved.
6    * 
7    * This software is proprietary information of Delft University of Technology
8    * The code is published under the General Public License
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  	//We merely extend and provide one required interface
34  }