Update of /cvsroot/ejtools/applications/jndi.browser/src/main/net/sourceforge/ejtools/jndibrowser/model/ejb
In directory usw-pr-cvs1:/tmp/cvs-serv30166/jndi.browser/src/main/net/sourceforge/ejtools/jndibrowser/model/ejb
Added Files:
PropertyChanger.java
Log Message:
Initial Import
--- NEW FILE: PropertyChanger.java ---
/*
* EJTools, the Enterprise Java Tools
*
* Distributable under LGPL license.
* See terms of license at www.gnu.org.
*/
package net.sourceforge.ejtools.jndibrowser.model.ejb;
// Standard Imports
import java.beans.PropertyChangeListener;
/**
*Description of the Interface
*
* @author letiembl
* @created 2 janvier 2002
*/
public interface PropertyChanger
{
/**
*Adds a feature to the PropertyChangeListener attribute of the PropertyChanger object
*
* @param pcl The feature to be added to the PropertyChangeListener attribute
*/
public void addPropertyChangeListener(PropertyChangeListener pcl);
/**
*Description of the Method
*
* @param pcl Description of Parameter
*/
public void removePropertyChangeListener(PropertyChangeListener pcl);
}
|