FileDocCategorySizeDatePackage
TextValueCellEditor.javaAPI DocAndroid 1.5 API1355Wed May 06 22:41:10 BST 2009com.android.ide.eclipse.editors.ui

TextValueCellEditor

public class TextValueCellEditor extends org.eclipse.jface.viewers.TextCellEditor
TextCellEditor able to receive a {@link UiAttributeNode} in the {@link #setValue(Object)} method.

Fields Summary
Constructors Summary
public TextValueCellEditor(org.eclipse.swt.widgets.Composite parent)

        super(parent);
    
Methods Summary
protected voiddoSetValue(java.lang.Object value)

        if (value instanceof UiAttributeNode) {
            super.doSetValue(((UiAttributeNode)value).getCurrentValue());
            return;
        }
        
        super.doSetValue(value);