Interface WorkOnChange
- All Known Implementing Classes:
ReflectiveWorkOnChange
public interface WorkOnChange
Encapsulate some amount of work to perform whenever a change aware collection is modified.
- Author:
- Jeff Fischer
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
doWork
(Collection changed) An implementation of this method will be called whenever a change is detected on a change aware collection.
-
Method Details
-
doWork
An implementation of this method will be called whenever a change is detected on a change aware collection. The implementation should contain whatever code is necessary to respond to the collection change.- Parameters:
changed
- the un-proxied collection that was modified
-