public interface

ConfigurationListener

org.codehaus.plexus.component.configurator.ConfigurationListener

Class Overview

Listen for configuration changes on an object.

Summary

Public Methods
abstract void notifyFieldChangeUsingReflection(String fieldName, Object value, Object target)
Notify the listener that a field has been set using private field injection.
abstract void notifyFieldChangeUsingSetter(String fieldName, Object value, Object target)
Notify the listener that a field has been set using its setter.

Public Methods

public abstract void notifyFieldChangeUsingReflection (String fieldName, Object value, Object target)

Notify the listener that a field has been set using private field injection.

Parameters
fieldName the field
value the value set
target the target object

public abstract void notifyFieldChangeUsingSetter (String fieldName, Object value, Object target)

Notify the listener that a field has been set using its setter.

Parameters
fieldName the field
value the value set
target the target object