org.codehaus.plexus.component.configurator
Interface ConfigurationListener
public interface ConfigurationListener
Listen for configuration changes on an object.
$Id: ConfigurationListener.java 2634 2005-10-08 06:33:08Z brett $ void | notifyFieldChangeUsingReflection(String fieldName, Object value, Object target)- Notify the listener that a field has been set using private field injection.
|
void | notifyFieldChangeUsingSetter(String fieldName, Object value, Object target)- Notify the listener that a field has been set using its setter.
|
notifyFieldChangeUsingReflection
public void notifyFieldChangeUsingReflection(String fieldName,
Object value,
Object target) Notify the listener that a field has been set using private field injection.
fieldName - the fieldvalue - the value settarget - the target object
notifyFieldChangeUsingSetter
public void notifyFieldChangeUsingSetter(String fieldName,
Object value,
Object target) Notify the listener that a field has been set using its setter.
fieldName - the fieldvalue - the value settarget - the target object