blob: a8275bf1fe65108e406430868ae3f8dfd992db64 [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 195222, 264307, 265561
******************************************************************************/
package org.eclipse.core.internal.databinding.beans;
import java.beans.PropertyDescriptor;
import java.util.Collections;
import java.util.Map;
import org.eclipse.core.databinding.observable.map.MapDiff;
import org.eclipse.core.databinding.property.INativePropertyListener;
import org.eclipse.core.databinding.property.ISimplePropertyListener;
import org.eclipse.core.databinding.property.map.SimpleMapProperty;
/**
* @param <S>
* @param <K>
* @param <V>
* @since 3.3
*
*/
public class PojoMapProperty<S, K, V> extends SimpleMapProperty<S, K, V> {
private final PropertyDescriptor propertyDescriptor;
private final Class<K> keyType;
private final Class<V> valueType;
/**
* @param propertyDescriptor
* @param keyType
* @param valueType
*/
public PojoMapProperty(PropertyDescriptor propertyDescriptor,
Class<K> keyType, Class<V> valueType) {
this.propertyDescriptor = propertyDescriptor;
this.keyType = keyType;
this.valueType = valueType;
}
public Object getKeyType() {
return keyType;
}
public Object getValueType() {
return valueType;
}
public Class<K> getKeyClass() {
return keyType;
}
public Class<V> getValueClass() {
return valueType;
}
protected Map<K, V> doGetMap(S source) {
return (Map<K, V>) asMap(BeanPropertyHelper.readProperty(source,
propertyDescriptor));
}
private Map<?, ?> asMap(Object propertyValue) {
if (propertyValue == null)
return Collections.emptyMap();
return (Map<?, ?>) propertyValue;
}
protected void doSetMap(S source, Map<K, V> map, MapDiff<K, V> diff) {
doSetMap(source, map);
}
protected void doSetMap(S source, Map<K, V> map) {
BeanPropertyHelper.writeProperty(source, propertyDescriptor, map);
}
public INativePropertyListener<S> adaptListener(
ISimplePropertyListener<MapDiff<K, V>> listener) {
return null;
}
public String toString() {
String s = BeanPropertyHelper.propertyName(propertyDescriptor) + "{:}"; //$NON-NLS-1$
if (keyType != null || valueType != null)
s += "<" + BeanPropertyHelper.shortClassName(keyType) + ", " //$NON-NLS-1$ //$NON-NLS-2$
+ BeanPropertyHelper.shortClassName(valueType) + ">"; //$NON-NLS-1$
return s;
}
}