Package | Description |
---|---|
org.eclipse.core.databinding.observable |
Provides the core APIs for observing changes in objects.
|
org.eclipse.core.databinding.observable.map |
Provides classes that can be used to observe changes in maps.
|
org.eclipse.core.databinding.property.map |
Modifier and Type | Method and Description |
---|---|
static MapDiff |
Diffs.computeLazyMapDiff(Map oldMap,
Map newMap)
Returns a lazily computed
MapDiff describing the change between
the specified old and new map states. |
static MapDiff |
Diffs.computeMapDiff(Map oldMap,
Map newMap)
Returns a
MapDiff describing the change between the specified old
and new map states. |
static MapDiff |
Diffs.createMapDiff(Set addedKeys,
Set removedKeys,
Set changedKeys,
Map oldValues,
Map newValues) |
static MapDiff |
Diffs.createMapDiffRemoveAll(Map copyOfOldMap) |
static MapDiff |
Diffs.createMapDiffSingleAdd(Object addedKey,
Object newValue) |
static MapDiff |
Diffs.createMapDiffSingleChange(Object existingKey,
Object oldValue,
Object newValue) |
static MapDiff |
Diffs.createMapDiffSingleRemove(Object removedKey,
Object oldValue) |
Modifier and Type | Field and Description |
---|---|
MapDiff |
MapChangeEvent.diff
Description of the change to the source observable map.
|
Modifier and Type | Method and Description |
---|---|
protected void |
AbstractObservableMap.fireMapChange(MapDiff diff)
Fires map change events.
|
protected void |
ObservableMap.fireMapChange(MapDiff diff) |
protected void |
DecoratingObservableMap.fireMapChange(MapDiff diff) |
Constructor and Description |
---|
MapChangeEvent(IObservableMap source,
MapDiff diff)
Creates a new map change event
|
Modifier and Type | Method and Description |
---|---|
protected abstract void |
SimpleMapProperty.doSetMap(Object source,
Map map,
MapDiff diff)
Updates the property on the source with the specified change.
|
protected void |
DelegatingMapProperty.doUpdateMap(Object source,
MapDiff diff) |
protected void |
MapProperty.doUpdateMap(Object source,
MapDiff diff)
Updates the property on the source with the specified change.
|
protected void |
SimpleMapProperty.doUpdateMap(Object source,
MapDiff diff) |
void |
SimpleMapProperty.setMap(Object source,
Map map,
MapDiff diff)
Updates the property on the source with the specified change.
|
void |
MapProperty.updateMap(Object source,
MapDiff diff) |
void |
IMapProperty.updateMap(Object source,
MapDiff diff)
Updates the property on the source with the specified change.
|
Copyright (c) 2000, 2015 Eclipse Contributors and others. All rights reserved.Guidelines for using Eclipse APIs.