blob: 29aaf397647d5855c507d8b848a50b94bb9a748d [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 194734)
* Matthew Hall - bugs 195222, 264307, 265561
******************************************************************************/
package org.eclipse.core.internal.databinding.beans;
import java.beans.PropertyDescriptor;
import java.lang.reflect.Array;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import org.eclipse.core.databinding.observable.Diffs;
import org.eclipse.core.databinding.observable.IDiff;
import org.eclipse.core.databinding.observable.list.ListDiff;
import org.eclipse.core.databinding.property.INativePropertyListener;
import org.eclipse.core.databinding.property.ISimplePropertyListener;
import org.eclipse.core.databinding.property.list.SimpleListProperty;
/**
* @since 3.3
*
*/
public class BeanListProperty extends SimpleListProperty {
private final PropertyDescriptor propertyDescriptor;
private final Class elementType;
/**
* @param propertyDescriptor
* @param elementType
*/
public BeanListProperty(PropertyDescriptor propertyDescriptor,
Class elementType) {
this.propertyDescriptor = propertyDescriptor;
this.elementType = elementType == null ? BeanPropertyHelper
.getCollectionPropertyElementType(propertyDescriptor)
: elementType;
}
public Object getElementType() {
return elementType;
}
protected List doGetList(Object source) {
return asList(BeanPropertyHelper.readProperty(source,
propertyDescriptor));
}
private List asList(Object propertyValue) {
if (propertyValue == null)
return new ArrayList();
if (propertyDescriptor.getPropertyType().isArray())
return new ArrayList(Arrays.asList((Object[]) propertyValue));
return (List) propertyValue;
}
protected void doSetList(Object source, List list, ListDiff diff) {
BeanPropertyHelper.writeProperty(source, propertyDescriptor,
convertListToBeanPropertyType(list));
}
private Object convertListToBeanPropertyType(List list) {
Object propertyValue = list;
if (propertyDescriptor.getPropertyType().isArray()) {
Class componentType = propertyDescriptor.getPropertyType()
.getComponentType();
Object[] array = (Object[]) Array.newInstance(componentType, list
.size());
list.toArray(array);
propertyValue = array;
}
return propertyValue;
}
public INativePropertyListener adaptListener(
final ISimplePropertyListener listener) {
return new BeanPropertyListener(this, propertyDescriptor, listener) {
protected IDiff computeDiff(Object oldValue, Object newValue) {
return Diffs
.computeListDiff(asList(oldValue), asList(newValue));
}
};
}
public String toString() {
String s = BeanPropertyHelper.propertyName(propertyDescriptor) + "[]"; //$NON-NLS-1$
if (elementType != null)
s += "<" + BeanPropertyHelper.shortClassName(elementType) + ">"; //$NON-NLS-1$//$NON-NLS-2$
return s;
}
}