blob: 37744e51c6c4a25dd3edde282cd435aeb4860743 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2010 Soyatec (http://www.soyatec.com) 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:
* Soyatec - initial API and implementation
*******************************************************************************/
package org.eclipse.xwt.tools.ui.designer.core.properties.editors;
import org.eclipse.jface.viewers.DialogCellEditor;
import org.eclipse.jface.viewers.ILabelProvider;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.xwt.tools.ui.designer.core.properties.LabelProviderFactory;
/**
* @author jliu (jin.liu@soyatec.com)
*/
public abstract class AbstractCellEditor extends DialogCellEditor {
public AbstractCellEditor(Composite parent) {
super(parent);
}
/*
* (non-Javadoc)
* @see org.eclipse.jface.viewers.DialogCellEditor#updateContents(java.lang.Object)
*/
protected void updateContents(Object value) {
if (value != null) {
ILabelProvider labelProvider = LabelProviderFactory.getLabelProvider(value.getClass());
value = labelProvider.getText(value);
}
super.updateContents(value);
}
/*
* (non-Javadoc)
* @see org.eclipse.jface.viewers.DialogCellEditor#openDialogBox(org.eclipse.swt.widgets.Control)
*/
protected Object openDialogBox(Control cellEditorWindow) {
return null;
}
}