Package org.jvnet.hk2.config
Interface Changed
-
public interface ChangedObjects that do not wish to process the entire change set of a transaction can implement this interface and use it to invoke utility methods on ConfigSupport.- Author:
- Jerome Dochez
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classChanged.TYPEtype of change on a particular instance
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T extends ConfigBeanProxy>
NotProcessedchanged(Changed.TYPE type, Class<T> changedType, T changedInstance)Notification of a change on a configuration object
-
-
-
Method Detail
-
changed
<T extends ConfigBeanProxy> NotProcessed changed(Changed.TYPE type, Class<T> changedType, T changedInstance)
Notification of a change on a configuration object- Parameters:
type- type of change : ADD mean the changedInstance was added to the parent REMOVE means the changedInstance was removed from the parent, CHANGE means the changedInstance has mutated.changedType- type of the configuration objectchangedInstance- changed instance.
-
-