blob: 42d323d22fbd5ec1acf0565dbbcc6f3f1f42e84c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jface.databinding.viewers;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.Locale;
import org.eclipse.jface.databinding.viewers.TableViewerDescription.Column;
import org.eclipse.jface.viewers.ICellModifier;
import org.eclipse.swt.widgets.Item;
/**
* <p>
* <strong>EXPERIMENTAL</strong>. This class or interface has been added as
* part of a work in progress. There is no guarantee that this API will remain
* unchanged during the 3.2 release cycle. Please do not use this API without
* consulting with the Platform/UI team.
* </p>
*
* @since 3.2
*
* TODO <bb>this class should be refactored, or moved to a different place</bb>
*/
public class DefaultCellModifier implements ICellModifier{
private TableViewerDescription tableViewerDescription;
/**
* @param tableViewerDescription
*/
public DefaultCellModifier(TableViewerDescription tableViewerDescription){
this.tableViewerDescription = tableViewerDescription;
}
private Column findColumn(String property) {
for (int i = 0; i < tableViewerDescription.getColumnCount(); i++) {
Column column = tableViewerDescription.getColumn(i);
if (column.getPropertyName().equals(property)) {
return column;
}
}
return null;
}
public boolean canModify(Object element, String property) {
return true;
}
public Object getValue(Object element, String property) {
Column column = findColumn(property);
if (column == null) {
return null;
}
try {
Method getter = element
.getClass()
.getMethod(
"get" + property.substring(0, 1).toUpperCase(Locale.ENGLISH) + property.substring(1), new Class[0]); //$NON-NLS-1$
return getter.invoke(element, new Object[0]);
} catch (SecurityException e) {
// TODO log
} catch (NoSuchMethodException e) {
// TODO log
} catch (IllegalArgumentException e) {
// TODO log
} catch (IllegalAccessException e) {
// TODO log
} catch (InvocationTargetException e) {
// TODO log
}
return null;
}
public void modify(Object element, String property, Object value) {
Column column = findColumn(property);
if (column == null) {
return;
}
if (element instanceof Item) {
element = ((Item) element).getData();
}
try {
Method setter = element
.getClass()
.getMethod(
"set" + property.substring(0, 1).toUpperCase(Locale.ENGLISH) + property.substring(1), new Class[] { column.getConverter().getTargetType() }); //$NON-NLS-1$
setter.invoke(element, new Object[] { value });
return;
} catch (SecurityException e) {
// TODO log
} catch (NoSuchMethodException e) {
// TODO log
} catch (IllegalArgumentException e) {
// TODO log
} catch (IllegalAccessException e) {
// TODO log
} catch (InvocationTargetException e) {
// TODO log
}
}
}