KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejtools > jndi > browser > model > ejb > PropertyChanger


1 /*
2  * EJTools, the Enterprise Java Tools
3  *
4  * Distributable under LGPL license.
5  * See terms of license at www.gnu.org.
6  */

7 package org.ejtools.jndi.browser.model.ejb;
8
9 import java.beans.PropertyChangeListener JavaDoc;
10
11 /**
12  * Interface that provides property change management.
13  *
14  * @author letiemble
15  * @created 2 janvier 2002
16  * @version $Revision: 1.2 $
17  * @todo Reference to Rickard Öberg
18  */

19 public interface PropertyChanger
20 {
21    /**
22     * Adds a PropertyChangeListener to the underlying collection
23     *
24     * @param pcl The PropertyChangeListener to add
25     */

26    public void addPropertyChangeListener(PropertyChangeListener JavaDoc pcl);
27
28
29    /**
30     * Removes a PropertyChangeListener to the underlying collection
31     *
32     * @param pcl The PropertyChangeListener to remove
33     */

34    public void removePropertyChangeListener(PropertyChangeListener JavaDoc pcl);
35 }
36
Popular Tags