Package | Description |
---|---|
de.innovationgate.utils |
Generic various-purpose utility classes.
|
Modifier and Type | Method and Description |
---|---|
static java.util.List |
ModifyListenerFactory.create(java.util.List target,
ModifyListener reciever)
creates an monitorable List
ModifyLister.hasBeenModified() is invoked on the following list methods:
add, remove, removeAll, retainAll, clear
|
static java.util.Map |
ModifyListenerFactory.create(java.util.Map target,
ModifyListener reciever)
creates an monitorable Map
ModifyLister.hasBeenModified() is invoked on the following map methods:
put, remove, clear
|
static ModifyListenerObjectWrapper |
ModifyListenerFactory.create(java.lang.Object target,
ModifyListener reciever)
creates an monitorable Object
the object is wrapped by an
ModifyListenerObjectWrapper
ModifyLister.hasBeenModified() is invoked on the method 'set()' of ModifyListenerObjectWrapper |
static java.util.Set |
ModifyListenerFactory.create(java.util.Set target,
ModifyListener reciever)
creates an monitorable Set
ModifyLister.hasBeenModified() is invoked on all data modification methods of Set
|