blob: 1abdcece90e23492cc18b4648b3e09da43115cea [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2010 Matthew Hall and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Matthew Hall - initial API and implementation (bug 194734)
* Matthew Hall - bug 278550
******************************************************************************/
package org.eclipse.core.internal.databinding.property;
import java.util.Map;
import org.eclipse.core.databinding.observable.ObservableTracker;
import org.eclipse.core.databinding.observable.Realm;
import org.eclipse.core.databinding.observable.map.IObservableMap;
import org.eclipse.core.databinding.observable.map.MapDiff;
import org.eclipse.core.databinding.observable.value.IObservableValue;
import org.eclipse.core.databinding.property.map.IMapProperty;
import org.eclipse.core.databinding.property.map.MapProperty;
import org.eclipse.core.databinding.property.value.IValueProperty;
/**
* @since 3.3
*
*/
public class ValuePropertyDetailMap extends MapProperty {
private final IValueProperty masterProperty;
private final IMapProperty detailProperty;
/**
* @param masterProperty
* @param detailProperty
*/
public ValuePropertyDetailMap(IValueProperty masterProperty,
IMapProperty detailProperty) {
this.masterProperty = masterProperty;
this.detailProperty = detailProperty;
}
public Object getKeyType() {
return detailProperty.getKeyType();
}
public Object getValueType() {
return detailProperty.getValueType();
}
protected Map doGetMap(Object source) {
Object masterValue = masterProperty.getValue(source);
return detailProperty.getMap(masterValue);
}
protected void doSetMap(Object source, Map map) {
Object masterValue = masterProperty.getValue(source);
detailProperty.setMap(masterValue, map);
}
protected void doUpdateMap(Object source, MapDiff diff) {
Object masterValue = masterProperty.getValue(source);
detailProperty.updateMap(masterValue, diff);
}
public IObservableMap observe(Realm realm, Object source) {
IObservableValue masterValue;
ObservableTracker.setIgnore(true);
try {
masterValue = masterProperty.observe(realm, source);
} finally {
ObservableTracker.setIgnore(false);
}
IObservableMap detailMap = detailProperty.observeDetail(masterValue);
PropertyObservableUtil.cascadeDispose(detailMap, masterValue);
return detailMap;
}
public IObservableMap observeDetail(IObservableValue master) {
IObservableValue masterValue;
ObservableTracker.setIgnore(true);
try {
masterValue = masterProperty.observeDetail(master);
} finally {
ObservableTracker.setIgnore(false);
}
IObservableMap detailMap = detailProperty.observeDetail(masterValue);
PropertyObservableUtil.cascadeDispose(detailMap, masterValue);
return detailMap;
}
public String toString() {
return masterProperty + " => " + detailProperty; //$NON-NLS-1$
}
}