blob: 3d2e0cc5785abacfc2d884f5dbd325835fd2137a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 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 247997)
* Matthew Hall - bug 264306
******************************************************************************/
package org.eclipse.core.databinding.property.value;
import org.eclipse.core.databinding.observable.Realm;
import org.eclipse.core.databinding.observable.list.IObservableList;
import org.eclipse.core.databinding.observable.map.IObservableMap;
import org.eclipse.core.databinding.observable.set.IObservableSet;
import org.eclipse.core.databinding.observable.value.IObservableValue;
import org.eclipse.core.databinding.property.INativePropertyListener;
import org.eclipse.core.databinding.property.ISimplePropertyListener;
import org.eclipse.core.internal.databinding.property.value.ListDelegatingValueObservableList;
import org.eclipse.core.internal.databinding.property.value.MapDelegatingValueObservableMap;
import org.eclipse.core.internal.databinding.property.value.SetDelegatingValueObservableMap;
/**
* @since 1.2
*
*/
public abstract class DelegatingValueProperty extends ValueProperty {
private final Object valueType;
private final IValueProperty nullProperty = new NullValueProperty();
protected DelegatingValueProperty() {
this(null);
}
protected DelegatingValueProperty(Object valueType) {
this.valueType = valueType;
}
/**
* Returns the property to delegate to for the specified source object.
* Repeated calls to this method with the same source object returns the
* same delegate instance.
*
* @param source
* the property source (may be null)
* @return the property to delegate to for the specified source object.
*/
public final IValueProperty getDelegate(Object source) {
if (source == null)
return nullProperty;
IValueProperty delegate = doGetDelegate(source);
if (delegate == null)
delegate = nullProperty;
return delegate;
}
/**
* Returns the property to delegate to for the specified source object.
* Implementers must ensure that repeated calls to this method with the same
* source object returns the same delegate instance.
*
* @param source
* the property source
* @return the property to delegate to for the specified source object.
*/
protected abstract IValueProperty doGetDelegate(Object source);
public Object getValueType() {
return valueType;
}
public IObservableValue observe(Object source) {
return getDelegate(source).observe(source);
}
public IObservableValue observe(Realm realm, Object source) {
return getDelegate(source).observe(realm, source);
}
public IObservableList observeDetail(IObservableList master) {
return new ListDelegatingValueObservableList(master, this);
}
public IObservableMap observeDetail(IObservableSet master) {
return new SetDelegatingValueObservableMap(master, this);
}
public IObservableMap observeDetail(IObservableMap master) {
return new MapDelegatingValueObservableMap(master, this);
}
private class NullValueProperty extends SimpleValueProperty {
public Object getValueType() {
return valueType;
}
protected Object doGetValue(Object source) {
return null;
}
protected void doSetValue(Object source, Object value) {
}
public INativePropertyListener adaptListener(
ISimplePropertyListener listener) {
return null;
}
}
}