blob: 193658cc9477fb3c69610a13149b9d83c325bc9d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2009 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 - bugs 264307, 264619
******************************************************************************/
package org.eclipse.core.internal.databinding.beans;
import java.util.HashMap;
import java.util.Map;
import org.eclipse.core.databinding.beans.BeanProperties;
import org.eclipse.core.databinding.observable.masterdetail.MasterDetailObservables;
import org.eclipse.core.databinding.observable.value.IObservableValue;
import org.eclipse.core.databinding.property.value.DelegatingValueProperty;
import org.eclipse.core.databinding.property.value.IValueProperty;
/**
* @since 3.3
*
*/
public class AnonymousBeanValueProperty extends DelegatingValueProperty {
private final String propertyName;
private Map delegates;
/**
* @param propertyName
* @param valueType
*/
public AnonymousBeanValueProperty(String propertyName, Class valueType) {
super(valueType);
this.propertyName = propertyName;
this.delegates = new HashMap();
}
protected IValueProperty doGetDelegate(Object source) {
return getClassDelegate(source.getClass());
}
private IValueProperty getClassDelegate(Class beanClass) {
if (delegates.containsKey(beanClass))
return (IValueProperty) delegates.get(beanClass);
IValueProperty delegate;
try {
delegate = BeanProperties.value(beanClass, propertyName,
(Class) getValueType());
} catch (IllegalArgumentException noSuchProperty) {
delegate = null;
}
delegates.put(beanClass, delegate);
return delegate;
}
public IObservableValue observeDetail(IObservableValue master) {
return MasterDetailObservables.detailValue(master, valueFactory(master
.getRealm()), inferValueType(master.getValueType()));
}
private Object inferValueType(Object masterObservableValueType) {
if (masterObservableValueType instanceof Class) {
return getClassDelegate((Class) masterObservableValueType)
.getValueType();
}
return null;
}
public String toString() {
String s = "?." + propertyName; //$NON-NLS-1$
Class valueType = (Class) getValueType();
if (valueType != null)
s += "<" + BeanPropertyHelper.shortClassName(valueType) + ">"; //$NON-NLS-1$//$NON-NLS-2$
return s;
}
}