Example usage for org.eclipse.jface.viewers CellEditor subclass-usage

List of usage examples for org.eclipse.jface.viewers CellEditor subclass-usage

Introduction

In this page you can find the example usage for org.eclipse.jface.viewers CellEditor subclass-usage.

Usage

From source file at.spardat.xma.guidesign.presentation.MyDialogCellEditor.java

/**
 *
 * copied from org.eclipse.jface.viewers.DialogCellEditor and org.eclipse.emf.common.ui.celleditor.ExtendedDialogCellEditor
 * not used, because the propertyviewer has also to be notified about the delete of the corresponding object. this only works with
 * selection changes in the treeviewer
 * @author S1462

From source file br.ufes.inf.nemo.ontouml.transformation.onto2info.ui.util.BooleanCellEditor.java

/**
 * @since 3.4
 * 
 */
public class BooleanCellEditor extends CellEditor {
    private Button button;

From source file ca.uwaterloo.gp.fmp.presentation.MultiLineTableCellEditor.java

/**
 * @author Chang Hwan Peter Kim <chpkim@swen.uwaterloo.ca>
 */
public class MultiLineTableCellEditor extends CellEditor {

    private static final int MULTI_LINE_HEIGHT = 150;

From source file ca.uwaterloo.gp.fmp.presentation.MultiLineTextCellEditor.java

/**
 * @author Chang Hwan Peter Kim <chpkim@swen.uwaterloo.ca>
 */
public class MultiLineTextCellEditor extends CellEditor {

    private static final int MULTI_LINE_HEIGHT = 150;

From source file cc.warlock.rcp.ui.ContentAssistCellEditor.java

/**
 * A cell editor that manages a content assist field.
 * The cell editor's value is the text string itself.
 * 
 * This class may be instantiated; it is not intended to be subclassed.
 * 

From source file cc.warlock.rcp.ui.KeyStrokeCellEditor.java

/**
 * @author Marshall Culpepper
 *
 */
public class KeyStrokeCellEditor extends CellEditor {

From source file com.amalto.workbench.widgets.celleditor.EditableComboBoxCellEditor.java

public class EditableComboBoxCellEditor extends CellEditor {

    private String[] items;

    private CCombo comboBox;

From source file com.amalto.workbench.widgets.celleditor.EditableComboBoxDialogCellEditor.java

public abstract class EditableComboBoxDialogCellEditor extends CellEditor {

    private String[] items;

    private Composite editor;

From source file com.aptana.ide.editors.preferences.ColorCellEditor.java

/**
 * @author Kevin Sawicki (ksawicki@aptana.com)
 */
public class ColorCellEditor extends CellEditor {

    private ColorDialog dialog;

From source file com.bluexml.side.application.ui.dialogs.manageconfiguration.DialogResourceCellEditor.java

public class DialogResourceCellEditor extends CellEditor {
    private RessourcesSelection resourceSelector;
    private Table table;
    private Text t;

    public DialogResourceCellEditor(Table table) {