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

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

Introduction

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

Usage

From source file ac.soton.fmusim.components.ui.controls.FMUParameterValueEditingSupport.java

/**
 * Table cell editing support for FMU parameter values.
 * 
 * @author vitaly
 *
 */

From source file ac.soton.rms.ui.controls.FMUParameterValueEditingSupport.java

/**
 * Table cell editing support for FMU parameter values.
 * 
 * @author vitaly
 *
 */

From source file ca.uvic.chisel.javasketch.persistence.ui.internal.JavaSketchFilterEditingSupport.java

/**
 * Editing support that provides a text cell editor.
 * @author Del Myers
 *
 */
class JavaSketchFilterEditingSupport extends EditingSupport {

From source file cc.xuloo.rcputils.properties.PropertyEditingSupport.java

/**
 * EditingSupport for JFace viewers that gets and sets the value using a nested
 * bean property string like "company.country.name".
 * 
 * @author Ralf Ebert <info@ralfebert.de>
 */

From source file com.arm.cmsis.pack.tree.AdvisedEditingSupport.java

/**
 * This class implements editing possibilities for table cell, e.g. check box, combo box, etc.
 * In case of combo a combo box cell Editor is return, in case of check box, a check box control is returned.
 */
public class AdvisedEditingSupport extends EditingSupport {

From source file com.arm.cmsis.pack.ui.tree.AdvisedEditingSupport.java

/**
 * This class implements editing possibilities for table cell, e.g. check box, combo box, etc.
 * In case of combo a combo box cell Editor is return, in case of check box, a check box control is returned.
 */
public class AdvisedEditingSupport extends EditingSupport {

From source file com.astra.ses.spell.gui.dialogs.controls.VariableEditSupport.java

public class VariableEditSupport extends EditingSupport {
    private DictVariablesTable m_viewer;
    private DictVariablesTableItems m_forItem;

    public VariableEditSupport(DictVariablesTable viewer, DictVariablesTableItems forItem) {
        super(viewer);

From source file com.astra.ses.spell.gui.shared.views.controls.SharedVariableEditingSupport.java

public class SharedVariableEditingSupport extends EditingSupport {
    private SharedVariablesTableViewer m_viewer;
    private ISharedScope m_table;

    public SharedVariableEditingSupport(SharedVariablesTableViewer viewer, ISharedScope scope) {
        super(viewer);

From source file com.ecfeed.ui.common.TestDataValueEditingSupport.java

public class TestDataValueEditingSupport extends EditingSupport {
    private final TableViewer fViewer;
    private ComboBoxViewerCellEditor fComboCellEditor;
    private ITestDataEditorListener fSetValueListener;
    private MethodNode fMethod;

From source file com.gorillalogic.monkeyconsole.tableview.editors.ActionEditingSupport.java

public class ActionEditingSupport extends EditingSupport {

    private final TableViewer viewer;
    private ComboBoxCellEditor editor;

    public ActionEditingSupport(TableViewer viewer) {