com.taco.data
Interface INoReturnObservableMap

All Superinterfaces:
INoReturnMap, IObservableMap, java.util.Map
All Known Subinterfaces:
IDelayedResultObservableMap
All Known Implementing Classes:
DelayedResultObservableMap, ObservableMap, WrappedObservableMap

public interface INoReturnObservableMap
extends INoReturnMap, IObservableMap

A combination of INoReturnMap and IObservableMap.


Nested Class Summary
static interface INoReturnObservableMap.INoReturnObservableEntry
           
 
Nested classes/interfaces inherited from interface com.taco.data.INoReturnMap
INoReturnMap.INoReturnEntry
 
Nested classes/interfaces inherited from interface java.util.Map
java.util.Map.Entry
 
Nested classes/interfaces inherited from interface com.taco.data.IObservableMap
IObservableMap.IObservableEntry
 
Nested classes/interfaces inherited from interface java.util.Map
java.util.Map.Entry
 
Field Summary
 
Fields inherited from interface com.taco.data.IObservableMap
SINGLE_THREADED_STRATEGY
 
Method Summary
 void putNoReturn(java.lang.Object key, java.lang.Object value, boolean notifyListeners)
          Associate value with key.
 void putNoReturn(java.lang.Object key, java.lang.Object value, IObjectFilter listenerFilter)
           
 
Methods inherited from interface com.taco.data.INoReturnMap
entrySetNoReturn, putAll, putNoReturn, removeNoReturn
 
Methods inherited from interface java.util.Map
clear, containsKey, containsValue, entrySet, equals, get, hashCode, isEmpty, keySet, remove, size, values
 
Methods inherited from interface com.taco.data.IObservableMap
addPropertyChangeListener, getNotificationStrategy, getPropertyChangeListeners, put, put, put, putAll, putAll, putAll, removePropertyChangeListener, setNotificationStrategy, setPropertyChangeListeners
 
Methods inherited from interface java.util.Map
clear, containsKey, containsValue, entrySet, equals, get, hashCode, isEmpty, keySet, remove, size, values
 

Method Detail

putNoReturn

void putNoReturn(java.lang.Object key,
                 java.lang.Object value,
                 boolean notifyListeners)
Associate value with key. If notifyListeners is true, notify all listeners of the key property.


putNoReturn

void putNoReturn(java.lang.Object key,
                 java.lang.Object value,
                 IObjectFilter listenerFilter)